Complete the code to create a new Flutter project using the command line.
flutter [1] my_appThe flutter create command initializes a new Flutter project named my_app.
Complete the code to open the Flutter project folder in VS Code from the terminal.
code [1]The dot . means the current directory, so code . opens the current folder in VS Code.
Fix the error in the Android Studio setup step: To install Flutter plugin, go to Preferences > Plugins > {{BLANK_1}} and search for 'Flutter'.
Go to Preferences > Plugins > [1] and search for 'Flutter'.
The Flutter plugin is found in the Marketplace tab of the Plugins section in Android Studio.
Fill both blanks to complete the command to check Flutter installation and environment setup.
flutter [1] [2]
The basic command is flutter doctor. Adding --verbose shows detailed info.
Fill both blanks to complete the Flutter run command with device ID and release mode.
flutter run -d [1] --[2]
The -d option specifies the device ID like emulator-5554. The --release flag runs the app in release mode.