Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 230 Bytes

File metadata and controls

19 lines (13 loc) · 230 Bytes

First App - Flutter

Hello World Flutter Apps

Getting Started

This functions will execute while app running.

void main() => runApp(MyApp());

same code with :

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