pics/lib/main.dart
Martin Donnelly 8f3ca96bb7 init
2020-02-03 10:51:21 +00:00

20 lines
285 B
Dart

// 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());
}