What is the role of main.dart?

 main.dart is the entry point of every Flutter app.

It contains main() and usually starts with:

void main() { runApp(MyApp()); }

Comments

Popular posts from this blog

1. What is Flutter?

What is FutureBuilder and StreamBuilder?