Directory Portals: A Guide to The Quick Start To Flutter

Flutter was developed in the AndroidStudio development tool.

1. Run the first Flutter program

Now, get your first Flutter app running 😄!

  1. Start AndroidStudio and select Create the Flutter project.

  2. Select Flutter Application*.

  3. Configure project information.

  4. Set the project package name.

  5. Run your first Flutter project.

Ha! Your first Flutter app is up and running!

Entry to the Flutter program

The entry to a Flutter program is a main() function:

void main() => runApp( // Widget );
Copy the code

Call the runApp() function in the main() function, passing in a Widget.

Flutter adds the Widget view to the RenderView root node so that the Widget can be rendered in the view tree.

This part of the content is not covered in this guide, a brief understanding of the line, will not affect the hands-on development.

Directory Portals: A Guide to The Quick Start To Flutter

How can I be found?

Portal:CoorChice homepage

Portal:Lot of CoorChice