20 lines
285 B
Dart
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());
|
|
|
|
}
|
|
|
|
|
|
|