### Activate flutterpi_tool Globally Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Installs the flutterpi_tool globally using the Flutter package manager. This command makes the tool available for use across your projects. ```shell flutter pub global activate flutterpi_tool ``` -------------------------------- ### Create and Run Flutter App on Device Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Demonstrates the workflow of creating a new Flutter project and then running it on a specified Flutter-Pi device using flutterpi_tool. ```console flutter create hello_world && cd hello_world $ flutterpi_tool run -d pi5 ``` -------------------------------- ### Display flutterpi_tool Help Information Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Shows the main help message for flutterpi_tool, outlining its usage, global options, and available commands. ```console $ flutterpi_tool --help ``` -------------------------------- ### Add Device for Meta-Flutter Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Adds a device that utilizes the meta-flutter framework, specifying the file system layout. ```console $ flutterpi_tool devices add root@my-yocto-device --fs-layout=meta-flutter ``` -------------------------------- ### Add a Flutter-Pi Device Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Adds a new device to the flutterpi_tool's management list, specifying the connection details (e.g., user@hostname). ```console $ flutterpi_tool devices add pi@pi5 ``` -------------------------------- ### List Connected Flutter-Pi Devices Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Displays a list of all devices currently managed or detected by flutterpi_tool, including their connection status and platform details. ```console $ flutterpi_tool devices ``` -------------------------------- ### Add Device with Custom Display Size and ID Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Adds a device with custom configurations, including explicit display dimensions and a unique device identifier. ```console $ flutterpi_tool devices add pi@pi5 --display-size=285x190 --id=my-pi ``` -------------------------------- ### Run Flutter App in Profile Mode Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Executes a Flutter application on a target device in profile mode, which is optimized for performance analysis. ```console $ flutterpi_tool run -d pi5 --profile ``` -------------------------------- ### Activate Specific flutterpi_tool Version Source: https://github.com/ardera/flutterpi_tool/blob/main/README.md Activates a specific version of flutterpi_tool, ensuring compatibility with a particular Flutter SDK version. This is useful when encountering version conflicts. ```shell flutter pub global activate flutterpi_tool ^0.3.0 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.