Recall & Review
beginner
What is the main entry point file in a Flutter project?
The main entry point file is
lib/main.dart. It contains the main() function which starts the app.Click to reveal answer
beginner
What is the purpose of the
pubspec.yaml file in Flutter?It manages the app's dependencies, assets, and metadata like app name and version.
Click to reveal answer
intermediate
What folder contains the platform-specific code in a Flutter project?
The
android folder contains Android code, and the ios folder contains iOS code.Click to reveal answer
beginner
Where do you put images and fonts in a Flutter project?
You put them in an
assets folder, usually inside the project root, and declare them in pubspec.yaml.Click to reveal answer
intermediate
What is the role of the
test folder in a Flutter project?It contains test files to check your app’s code works correctly before releasing.
Click to reveal answer
Which file starts the Flutter app?
✗ Incorrect
The app starts from the
main() function inside lib/main.dart.Where do you declare app dependencies in Flutter?
✗ Incorrect
Dependencies are declared in
pubspec.yaml so Flutter knows what packages to use.Which folder contains platform-specific Android code?
✗ Incorrect
The
android/ folder holds native Android code and configuration.Where should you put image files for your Flutter app?
✗ Incorrect
Images go in an
assets/ folder and must be listed in pubspec.yaml.What is the purpose of the
test/ folder?✗ Incorrect
The
test/ folder holds files that test your app’s code.Describe the main folders and files in a Flutter project and their roles.
Think about where code, resources, and platform-specific parts live.
You got /5 concepts.
Explain how Flutter manages app assets like images and fonts.
Consider how you tell Flutter about files it needs to include.
You got /3 concepts.