2019-02-20 21:12:32 -06:00
|
|
|
import 'package:flutter/material.dart';
|
2019-03-21 00:32:00 -06:00
|
|
|
import 'package:flutter/services.dart';
|
2019-02-20 21:12:32 -06:00
|
|
|
|
2019-02-20 21:39:23 -06:00
|
|
|
import 'src/App.dart';
|
2019-02-20 21:12:32 -06:00
|
|
|
|
2019-04-06 23:27:59 -06:00
|
|
|
main() async {
|
2019-03-21 00:32:00 -06:00
|
|
|
SystemChrome.setSystemUIOverlayStyle(SystemUiOverlayStyle.light);
|
2019-04-06 23:27:59 -06:00
|
|
|
await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
|
2019-03-21 00:32:00 -06:00
|
|
|
runApp(App());
|
|
|
|
|
}
|