Forrest logo
back to context overview

flutter

List of commands for flutter:

  • flutter:tldr:0bb7e flutter: Check if all external tools are correctly installed.
    $ flutter doctor
    try on your machine
    explain this command
  • flutter:tldr:0d3c0 flutter: Download all packages specified in `pubspec.yaml`.
    $ flutter pub get
    try on your machine
    explain this command
  • flutter:tldr:11ec9 flutter: Display help about a specific command.
    $ flutter help ${command}
    try on your machine
    explain this command
  • flutter:tldr:3a1da flutter: Run tests in a terminal from the root of the project.
    $ flutter test ${test-example_test-dart}
    try on your machine
    explain this command
  • flutter:tldr:5ef4a flutter: Run Flutter on all started emulators and connected devices.
    $ flutter run -d all
    try on your machine
    explain this command
  • flutter:tldr:a59dc flutter: Initialize a new Flutter project in a directory of the same name.
    $ flutter create ${project_name}
    try on your machine
    explain this command
  • flutter:tldr:baf66 flutter: Build a release APK targeting most modern smartphones.
    $ flutter build apk --target-platform ${android-arm},${android-arm64}
    try on your machine
    explain this command
  • flutter:tldr:d94c8 flutter: List or change Flutter channel.
    $ flutter channel ${select}
    try on your machine
    explain this command
  • flutter:warp:27444 Run Build Runner Watch
    $ flutter pub run build_runner watch --delete-conflicting-outputs
    try on your machine
    explain this command
  • flutter:warp:49e24 Run Build Runner
    $ flutter pub run build_runner build --delete-conflicting-outputs
    try on your machine
    explain this command
  • flutter:warp:b1532 Clean Project
    $ flutter clean && flutter pub get
    try on your machine
    explain this command
back to context overview