@@ -8,7 +8,7 @@ void main() {
8
8
9
9
class _LocalHeroApp extends StatelessWidget {
10
10
const _LocalHeroApp ({
11
- Key key,
11
+ Key ? key,
12
12
}) : super (key: key);
13
13
14
14
@override
@@ -28,7 +28,7 @@ class _LocalHeroApp extends StatelessWidget {
28
28
29
29
class _LocalHeroPlayground extends StatelessWidget {
30
30
const _LocalHeroPlayground ({
31
- Key key,
31
+ Key ? key,
32
32
}) : super (key: key);
33
33
34
34
@override
@@ -62,36 +62,34 @@ class _LocalHeroPlayground extends StatelessWidget {
62
62
class _TileModel extends Equatable {
63
63
const _TileModel ({this .color, this .text});
64
64
65
- final Color color;
66
- final String text;
65
+ final Color ? color;
66
+ final String ? text;
67
67
68
68
@override
69
- List <Object > get props => [color, text];
69
+ List <Object ? > get props => [color, text];
70
70
71
71
@override
72
72
String toString () {
73
- return text;
73
+ return text! ;
74
74
}
75
75
}
76
76
77
77
class _Tile extends StatelessWidget {
78
78
const _Tile ({
79
- Key key,
80
- @ required this .model,
81
- @ required this .size,
79
+ Key ? key,
80
+ required this .model,
81
+ required this .size,
82
82
this .onTap,
83
- }) : assert (model != null ),
84
- assert (size != null ),
85
- super (key: key);
83
+ }) : super (key: key);
86
84
87
85
final _TileModel model;
88
- final VoidCallback onTap;
86
+ final VoidCallback ? onTap;
89
87
final double size;
90
88
91
89
@override
92
90
Widget build (BuildContext context) {
93
91
return LocalHero (
94
- tag: model.text,
92
+ tag: model.text! ,
95
93
child: GestureDetector (
96
94
onTap: onTap,
97
95
child: _RawTile (
@@ -105,26 +103,26 @@ class _Tile extends StatelessWidget {
105
103
106
104
class _RawTile extends StatelessWidget {
107
105
const _RawTile ({
108
- Key key,
109
- @ required this .model,
110
- @ required this .size,
106
+ Key ? key,
107
+ required this .model,
108
+ required this .size,
111
109
}) : super (key: key);
112
110
113
- final _TileModel model;
111
+ final _TileModel ? model;
114
112
final double size;
115
113
116
114
@override
117
115
Widget build (BuildContext context) {
118
116
return Container (
119
- color: model.color,
117
+ color: model! .color,
120
118
height: size,
121
119
width: size,
122
120
child: Padding (
123
121
padding: const EdgeInsets .all (16 ),
124
122
child: CircleAvatar (
125
123
backgroundColor: Colors .white70,
126
124
foregroundColor: Colors .black54,
127
- child: Text (model.text),
125
+ child: Text (model! .text! ),
128
126
),
129
127
),
130
128
);
@@ -133,7 +131,7 @@ class _RawTile extends StatelessWidget {
133
131
134
132
class _WrapReorderingAnimation extends StatefulWidget {
135
133
const _WrapReorderingAnimation ({
136
- Key key,
134
+ Key ? key,
137
135
}) : super (key: key);
138
136
139
137
@override
@@ -165,7 +163,6 @@ class _WrapReorderingAnimationState extends State<_WrapReorderingAnimation> {
165
163
child: LocalHeroOverlay (
166
164
child: Center (
167
165
child: Wrap (
168
- alignment: WrapAlignment .start,
169
166
spacing: spacing,
170
167
runSpacing: runSpacing,
171
168
children: < Widget > [
@@ -209,7 +206,7 @@ class _WrapReorderingAnimationState extends State<_WrapReorderingAnimation> {
209
206
210
207
class _AcrossContainersAnimation extends StatefulWidget {
211
208
const _AcrossContainersAnimation ({
212
- Key key,
209
+ Key ? key,
213
210
}) : super (key: key);
214
211
215
212
@override
@@ -288,15 +285,15 @@ class _AcrossContainersAnimationState
288
285
289
286
class _DraggableExample extends StatefulWidget {
290
287
const _DraggableExample ({
291
- Key key,
288
+ Key ? key,
292
289
}) : super (key: key);
293
290
294
291
@override
295
292
_DraggableExampleState createState () => _DraggableExampleState ();
296
293
}
297
294
298
295
class _DraggableExampleState extends State <_DraggableExample > {
299
- final List <_TileModel > tiles = < _TileModel > [];
296
+ final List <_TileModel ? > tiles = < _TileModel ? > [];
300
297
301
298
@override
302
299
void initState () {
@@ -332,7 +329,7 @@ class _DraggableExampleState extends State<_DraggableExample> {
332
329
);
333
330
}
334
331
335
- void onDrag (_TileModel source, _TileModel target) {
332
+ void onDrag (_TileModel ? source, _TileModel ? target) {
336
333
// source comes before target.
337
334
final int index = tiles.indexOf (target);
338
335
tiles.remove (source);
@@ -343,12 +340,12 @@ class _DraggableExampleState extends State<_DraggableExample> {
343
340
344
341
class _DraggableTile extends StatefulWidget {
345
342
_DraggableTile ({
346
- Key key,
343
+ Key ? key,
347
344
this .model,
348
345
}) : child = _RawTile (model: model, size: 80 ),
349
346
super (key: key);
350
347
351
- final _TileModel model;
348
+ final _TileModel ? model;
352
349
final Widget child;
353
350
354
351
@override
@@ -371,7 +368,7 @@ class _DraggableTileState extends State<_DraggableTile> {
371
368
feedback: widget.child,
372
369
childWhenDragging: Container (width: 80 , height: 80 ),
373
370
child: LocalHero (
374
- tag: widget.model,
371
+ tag: widget.model! ,
375
372
enabled: ! dragging,
376
373
child: widget.child,
377
374
),
@@ -381,11 +378,11 @@ class _DraggableTileState extends State<_DraggableTile> {
381
378
382
379
class LocalHeroOverlay extends StatefulWidget {
383
380
const LocalHeroOverlay ({
384
- Key key,
381
+ Key ? key,
385
382
this .child,
386
383
}) : super (key: key);
387
384
388
- final Widget child;
385
+ final Widget ? child;
389
386
390
387
@override
391
388
_LocalHeroOverlayState createState () => _LocalHeroOverlayState ();
@@ -397,7 +394,7 @@ class _LocalHeroOverlayState extends State<LocalHeroOverlay> {
397
394
return ClipRect (
398
395
child: Overlay (
399
396
initialEntries: < OverlayEntry > [
400
- OverlayEntry (builder: (context) => widget.child),
397
+ OverlayEntry (builder: (context) => widget.child! ),
401
398
],
402
399
),
403
400
);
@@ -406,7 +403,7 @@ class _LocalHeroOverlayState extends State<LocalHeroOverlay> {
406
403
407
404
class TestOne extends StatefulWidget {
408
405
const TestOne ({
409
- Key key,
406
+ Key ? key,
410
407
}) : super (key: key);
411
408
412
409
@override
@@ -449,7 +446,7 @@ class _TestOneState extends State<TestOne> {
449
446
return Column (
450
447
children: < Widget > [
451
448
...children,
452
- FlatButton (
449
+ TextButton (
453
450
onPressed: () {
454
451
setState (() {
455
452
children.shuffle ();
0 commit comments