forked from BansookNam/fast_app_base
-
Notifications
You must be signed in to change notification settings - Fork 788
/
Copy pathapp.dart
72 lines (62 loc) · 2.03 KB
/
app.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
import 'package:fast_app_base/common/common.dart';
import 'package:fast_app_base/common/theme/custom_theme_app.dart';
import 'package:fast_app_base/screen/main/s_main.dart';
import 'package:flutter/material.dart';
import 'common/theme/custom_theme.dart';
class App extends StatefulWidget {
static final GlobalKey<NavigatorState> navigatorKey = GlobalKey();
///light, dark 테마가 준비되었고, 시스템 테마를 따라가게 하려면 해당 필드를 제거 하시면 됩니다.
static const defaultTheme = CustomTheme.light;
static bool isForeground = true;
const App({super.key});
@override
State<App> createState() => AppState();
}
class AppState extends State<App> with Nav, WidgetsBindingObserver {
@override
GlobalKey<NavigatorState> get navigatorKey => App.navigatorKey;
@override
void initState() {
super.initState();
WidgetsBinding.instance.addObserver(this);
}
@override
void dispose() {
WidgetsBinding.instance.removeObserver(this);
super.dispose();
}
@override
Widget build(BuildContext context) {
return CustomThemeApp(
child: Builder(builder: (context) {
return MaterialApp(
navigatorKey: App.navigatorKey,
localizationsDelegates: context.localizationDelegates,
supportedLocales: context.supportedLocales,
locale: context.locale,
title: 'Image Finder',
theme: context.themeType.themeData,
home: const MainScreen(),
);
}),
);
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
switch (state) {
case AppLifecycleState.resumed:
App.isForeground = true;
break;
case AppLifecycleState.inactive:
break;
case AppLifecycleState.paused:
App.isForeground = false;
break;
case AppLifecycleState.detached:
break;
case AppLifecycleState.hidden: //Flutter 3.13 이하 버전을 쓰신다면 해당 라인을 삭제해주세요.
break;
}
super.didChangeAppLifecycleState(state);
}
}