-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProviderExample.dart
87 lines (80 loc) · 2.14 KB
/
ProviderExample.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
// Simple counter for manage state
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
void main() => runApp(
MultiProvider(
providers: [
ChangeNotifierProvider(create: (context) => Counter()),
],
child: const MyApp(),
),
);
class Counter with ChangeNotifier, DiagnosticableTreeMixin {
int _count = 0;
int get count => _count;
void increment() {
_count++;
notifyListeners();
}
@override
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
super.debugFillProperties(properties);
properties.add(IntProperty("count", count));
}
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(
title: const Center(child: Text("Provider Example")),
),
body: const AppBody(),
floatingActionButton: const FAB(),
),
);
}
}
class AppBody extends StatelessWidget {
const AppBody({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Center(
child: Column(
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.center,
children: const <Widget>[
Text('You have pushed the button this many times:'),
Count(),
],
),
);
}
}
class FAB extends StatelessWidget {
const FAB({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return FloatingActionButton(
key: const Key("increment_floatingActionButton"),
onPressed: () => context.read<Counter>().increment(),
tooltip: "Increment",
child: const Icon(Icons.add),
);
}
}
class Count extends StatelessWidget {
const Count({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Text(
"${context.watch<Counter>().count}",
key: const Key("counterState"),
style: Theme.of(context).textTheme.headlineMedium,
);
}
}