-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
41 lines (35 loc) · 1.18 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import 'package:beamer/beamer.dart';
import 'package:borku_africa_admin_web/routes.dart';
import 'package:borku_africa_admin_web/utils/shared_prefs.dart';
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'package:routemaster/routemaster.dart';
Future main() async {
WidgetsFlutterBinding.ensureInitialized();
initPrefs();
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp.router(
routerDelegate: RoutemasterDelegate(routesBuilder: (context) => routes),
routeInformationParser: const RoutemasterParser(),
debugShowCheckedModeBanner: false,
title: 'Admin | Borku Africa',
theme: ThemeData(
primarySwatch: Colors.grey,
primaryColor: Colors.white,
visualDensity: VisualDensity.adaptivePlatformDensity,
textTheme: GoogleFonts.balooDa2TextTheme(
Theme.of(context).textTheme,
),
),
);
}
}