init
This commit is contained in:
commit
8e54cfffc5
91 changed files with 2686 additions and 0 deletions
16
lib/main.dart
Normal file
16
lib/main.dart
Normal file
|
@ -0,0 +1,16 @@
|
|||
import 'dart:async';
|
||||
|
||||
import 'package:flutter/widgets.dart';
|
||||
|
||||
import 'app.dart';
|
||||
import 'features/core/abstracts/app_setup.dart';
|
||||
|
||||
Future<void> main() async {
|
||||
await runZonedGuarded(
|
||||
() async {
|
||||
await AppSetup.initialise();
|
||||
runApp(const McgApp());
|
||||
},
|
||||
AppSetup.onUncaughtException,
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue