-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
108 lines (98 loc) · 3.1 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'package:theme_extensions/app_theme.dart';
import 'package:theme_extensions/app_typography.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return ChangeNotifierProvider(
// 1. Provide AppTheme above the MaterialApp, so it will be available on all pages.
create: (_) => AppTheme(),
builder: (context, _) => MaterialApp(
title: 'Flutter Demo',
// 2. Provide light theme.
theme: AppTheme.light,
// 3. Provide dark theme.
darkTheme: AppTheme.dark,
// 4. Watch AppTheme changes (ThemeMode).
themeMode: context.watch<AppTheme>().themeMode,
debugShowCheckedModeBanner: false,
home: const MyHomePage(title: 'Flutter Demo Home Page'),
),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
_counter++;
});
}
void updateThemeMode(ThemeMode themeMode) {
// 5. Update ThemeMode.
context.read<AppTheme>().themeMode = themeMode;
}
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: context.theme.appColors.primary,
title: Text(widget.title),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
Text(
'You have pushed the button this many times:',
// Usage of custom typography with text theme extension.
style: context.theme.appTextTheme.body1,
),
Text(
'$_counter',
// Usage of custom typography without text theme extension.
style: AppTypography.h1.copyWith(
color: context.theme.appColors.primary,
),
),
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
TextButton(
onPressed: () => updateThemeMode(ThemeMode.light),
child: const Text('Light'),
),
TextButton(
onPressed: () => updateThemeMode(ThemeMode.dark),
child: const Text('Dark'),
),
TextButton(
onPressed: () => updateThemeMode(ThemeMode.system),
child: const Text('System'),
),
],
)
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
backgroundColor: context.theme.appColors.primary,
foregroundColor: context.theme.appColors.onPrimary,
child: const Icon(Icons.add),
),
);
}
}