Beginner
Flutter
Q33 / 100
Where is the entry point of a Flutter application?
Correct! Well done.
Incorrect.
The correct answer is B) The main() function in lib/main.dart
B
Correct Answer
The main() function in lib/main.dart
Explanation
Every Flutter application starts with the main() function in lib/main.dart. Inside main(), you call runApp() with your root widget to attach it to the screen and start the Flutter rendering engine.
Progress
33/100