pics/lib/main.dart

20 lines
285 B
Dart
Raw Normal View History

2020-02-03 10:51:21 +00:00
// i need to import a helper library
// from flutter to get content on the screen
import 'package:flutter/material.dart';
import 'src/app.dart';
// define a main function to run when the app starts
void main() {
// take that widget and get it onthe screen
runApp(App());
}