0
0
Fluttermobile~10 mins

IDE setup (VS Code, Android Studio) in Flutter - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a new Flutter project using the command line.

Flutter
flutter [1] my_app
Drag options to blanks, or click blank then click option'
Acreate
Bbuild
Crun
Dinstall
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'flutter run' instead of 'flutter create'.
Typing 'flutter build' which compiles the app but doesn't create a project.
2fill in blank
medium

Complete the code to open the Flutter project folder in VS Code from the terminal.

Flutter
code [1]
Drag options to blanks, or click blank then click option'
A~
B..
C.
D/
Attempts:
3 left
💡 Hint
Common Mistakes
Using '..' which means parent folder.
Using '/' which refers to root directory.
3fill in blank
hard

Fix the error in the Android Studio setup step: To install Flutter plugin, go to Preferences > Plugins > {{BLANK_1}} and search for 'Flutter'.

Flutter
Go to Preferences > Plugins > [1] and search for 'Flutter'.
Drag options to blanks, or click blank then click option'
AMarketplace
BInstalled
CUpdates
DSettings
Attempts:
3 left
💡 Hint
Common Mistakes
Trying to find Flutter plugin under 'Installed' tab.
Looking under 'Updates' which shows only updates.
4fill in blank
hard

Fill both blanks to complete the command to check Flutter installation and environment setup.

Flutter
flutter [1] [2]
Drag options to blanks, or click blank then click option'
Adoctor
B--verbose
C--check
D--fix
Attempts:
3 left
💡 Hint
Common Mistakes
Using '--check' or '--fix' which are not valid flutter doctor options.
Omitting the 'doctor' command.
5fill in blank
hard

Fill both blanks to complete the Flutter run command with device ID and release mode.

Flutter
flutter run -d [1] --[2]
Drag options to blanks, or click blank then click option'
Aemulator-5554
Brelease
Cdebug
Ddevice-1234
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'debug' instead of 'release' for production builds.
Using an invalid device ID.