-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomizer.dart
226 lines (209 loc) · 6.19 KB
/
customizer.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'model.dart';
/// Returns a clock [Widget] with [ClockModel].
///
/// Example:
/// final myClockBuilder = (ClockModel model) => AnalogClock(model);
///
/// Contestants: Do not edit this.
typedef Widget ClockBuilder(ClockModel model);
/// Wrapper for clock widget to allow for customizations.
///
/// Puts the clock in landscape orientation with an aspect ratio of 5:3.
/// Provides a drawer where users can customize the data that is sent to the
/// clock. To show/hide the drawer, double-tap the clock.
///
/// To use the [ClockCustomizer], pass your clock into it, using a ClockBuilder.
///
/// ```
/// final myClockBuilder = (ClockModel model) => AnalogClock(model);
/// return ClockCustomizer(myClockBuilder);
/// ```
/// Contestants: Do not edit this.
class ClockCustomizer extends StatefulWidget {
const ClockCustomizer(this._clock);
/// The clock widget with [ClockModel], to update and display.
final ClockBuilder _clock;
@override
_ClockCustomizerState createState() => _ClockCustomizerState();
}
class _ClockCustomizerState extends State<ClockCustomizer> {
final _model = ClockModel();
ThemeMode _themeMode = ThemeMode.light;
bool _configButtonShown = false;
@override
void initState() {
super.initState();
_model.addListener(_handleModelChange);
}
@override
void dispose() {
_model.removeListener(_handleModelChange);
_model.dispose();
super.dispose();
}
void _handleModelChange() => setState(() {});
Widget _enumMenu<T>(
String label, T value, List<T> items, ValueChanged<T> onChanged) {
return InputDecorator(
decoration: InputDecoration(
labelText: label,
),
child: DropdownButtonHideUnderline(
child: DropdownButton<T>(
value: value,
isDense: true,
onChanged: onChanged,
items: items.map((T item) {
return DropdownMenuItem<T>(
value: item,
child: Text(enumToString(item)),
);
}).toList(),
),
),
);
}
Widget _switch(String label, bool value, ValueChanged<bool> onChanged) {
return Row(
children: <Widget>[
Expanded(child: Text(label)),
Switch(
value: value,
onChanged: onChanged,
),
],
);
}
Widget _textField(
String currentValue, String label, ValueChanged<Null> onChanged) {
return TextField(
decoration: InputDecoration(
hintText: currentValue,
helperText: label,
),
onChanged: onChanged,
);
}
Widget _configDrawer(BuildContext context) {
return SafeArea(
child: Drawer(
child: Padding(
padding: const EdgeInsets.all(16.0),
child: SingleChildScrollView(
child: Column(
children: <Widget>[
_textField(_model.location, 'Location', (String location) {
setState(() {
_model.location = location;
});
}),
_textField(_model.temperature.toString(), 'Temperature',
(String temperature) {
setState(() {
_model.temperature = double.parse(temperature);
});
}),
_enumMenu('Theme', _themeMode,
ThemeMode.values.toList()..remove(ThemeMode.system),
(ThemeMode mode) {
setState(() {
_themeMode = mode;
});
}),
_switch('24-hour format', _model.is24HourFormat, (bool value) {
setState(() {
_model.is24HourFormat = value;
});
}),
_enumMenu(
'Weather', _model.weatherCondition, WeatherCondition.values,
(WeatherCondition condition) {
setState(() {
_model.weatherCondition = condition;
});
}),
_enumMenu('Units', _model.unit, TemperatureUnit.values,
(TemperatureUnit unit) {
setState(() {
_model.unit = unit;
});
}),
],
),
),
),
),
);
}
Widget _configButton() {
return Builder(
builder: (BuildContext context) {
return IconButton(
icon: Icon(Icons.settings),
tooltip: 'Configure clock',
onPressed: () {
Scaffold.of(context).openEndDrawer();
setState(() {
_configButtonShown = false;
});
},
);
},
);
}
@override
Widget build(BuildContext context) {
final clock = Center(
child: AspectRatio(
aspectRatio: 5 / 3,
child: Container(
decoration: BoxDecoration(
border: Border.all(
width: 2,
color: Theme.of(context).unselectedWidgetColor,
),
),
child: widget._clock(_model),
),
),
);
return MaterialApp(
theme: ThemeData.light(),
darkTheme: ThemeData.dark(),
themeMode: _themeMode,
debugShowCheckedModeBanner: false,
home: Scaffold(
resizeToAvoidBottomPadding: false,
endDrawer: _configDrawer(context),
body: SafeArea(
child: GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {
setState(() {
_configButtonShown = !_configButtonShown;
});
},
child: Stack(
children: [
clock,
if (_configButtonShown)
Positioned(
top: 0,
right: 0,
child: Opacity(
opacity: 0.7,
child: _configButton(),
),
),
],
),
),
),
),
);
}
}