-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmain.dart
74 lines (66 loc) · 2 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import 'package:flutter/material.dart';
import 'style/style.dart';
import 'screens/auth/register.dart';
import 'screens/auth/reset_password.dart';
import 'screens/auth/login.dart';
import 'screens/home/landing.dart';
import 'screens/home/home.dart';
import 'screens/task/add_task.dart';
import 'screens/priority_task/priority_task.dart';
import 'screens/task/task_expanded.dart';
import 'screens/task/task_list.dart';
import 'screens/profile/profile.dart';
import 'screens/settings/settings.dart';
import 'screens/settings/contact_us.dart';
import 'package:shared_preferences/shared_preferences.dart';
void main() async {
runApp(MyApp());
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}
class _MyAppState extends State<MyApp> {
final routes = <String, WidgetBuilder>{
Register.tag: (context) => Register(),
Login.tag: (context) => Login(),
ResetPassword.tag: (context) => ResetPassword(),
Landing.tag: (context) => Landing(),
Home.tag: (context) => Home(),
AddTask.tag: (context) => AddTask(),
PriorityTask.tag: (context) => PriorityTask(),
TaskExpanded.tag: (context) => TaskExpanded(),
TaskList.tag: (context) => TaskList(),
Profile.tag: (context) => Profile(),
Settings.tag: (context) => Settings(),
ContactUs.tag: (context) => ContactUs()
};
@override
void initState() {
super.initState();
userInfo();
}
var login;
userInfo() async {
SharedPreferences prefs = await SharedPreferences.getInstance();
setState(() {
login = prefs.getBool('login');
});
print("user...................$login ");
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Todo App',
debugShowCheckedModeBanner: false,
theme: ThemeData(
fontFamily: 'Roboto',
primaryColor: primary,
accentColor: primary,
cursorColor: border,
),
home: login == false || login == null ? Login() : Landing(),
routes: routes,
);
}
}