Skip to content

Commit a6c01ee

Browse files
committed
Null safety migration
1 parent 4555c31 commit a6c01ee

13 files changed

+166
-192
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## [0.2.0]
2+
- Null Safety migration.
3+
14
## [0.1.0]
25
- Initial Open Source release.

example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/lib/main.dart

+31-34
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ void main() {
88

99
class _LocalHeroApp extends StatelessWidget {
1010
const _LocalHeroApp({
11-
Key key,
11+
Key? key,
1212
}) : super(key: key);
1313

1414
@override
@@ -28,7 +28,7 @@ class _LocalHeroApp extends StatelessWidget {
2828

2929
class _LocalHeroPlayground extends StatelessWidget {
3030
const _LocalHeroPlayground({
31-
Key key,
31+
Key? key,
3232
}) : super(key: key);
3333

3434
@override
@@ -62,36 +62,34 @@ class _LocalHeroPlayground extends StatelessWidget {
6262
class _TileModel extends Equatable {
6363
const _TileModel({this.color, this.text});
6464

65-
final Color color;
66-
final String text;
65+
final Color? color;
66+
final String? text;
6767

6868
@override
69-
List<Object> get props => [color, text];
69+
List<Object?> get props => [color, text];
7070

7171
@override
7272
String toString() {
73-
return text;
73+
return text!;
7474
}
7575
}
7676

7777
class _Tile extends StatelessWidget {
7878
const _Tile({
79-
Key key,
80-
@required this.model,
81-
@required this.size,
79+
Key? key,
80+
required this.model,
81+
required this.size,
8282
this.onTap,
83-
}) : assert(model != null),
84-
assert(size != null),
85-
super(key: key);
83+
}) : super(key: key);
8684

8785
final _TileModel model;
88-
final VoidCallback onTap;
86+
final VoidCallback? onTap;
8987
final double size;
9088

9189
@override
9290
Widget build(BuildContext context) {
9391
return LocalHero(
94-
tag: model.text,
92+
tag: model.text!,
9593
child: GestureDetector(
9694
onTap: onTap,
9795
child: _RawTile(
@@ -105,26 +103,26 @@ class _Tile extends StatelessWidget {
105103

106104
class _RawTile extends StatelessWidget {
107105
const _RawTile({
108-
Key key,
109-
@required this.model,
110-
@required this.size,
106+
Key? key,
107+
required this.model,
108+
required this.size,
111109
}) : super(key: key);
112110

113-
final _TileModel model;
111+
final _TileModel? model;
114112
final double size;
115113

116114
@override
117115
Widget build(BuildContext context) {
118116
return Container(
119-
color: model.color,
117+
color: model!.color,
120118
height: size,
121119
width: size,
122120
child: Padding(
123121
padding: const EdgeInsets.all(16),
124122
child: CircleAvatar(
125123
backgroundColor: Colors.white70,
126124
foregroundColor: Colors.black54,
127-
child: Text(model.text),
125+
child: Text(model!.text!),
128126
),
129127
),
130128
);
@@ -133,7 +131,7 @@ class _RawTile extends StatelessWidget {
133131

134132
class _WrapReorderingAnimation extends StatefulWidget {
135133
const _WrapReorderingAnimation({
136-
Key key,
134+
Key? key,
137135
}) : super(key: key);
138136

139137
@override
@@ -165,7 +163,6 @@ class _WrapReorderingAnimationState extends State<_WrapReorderingAnimation> {
165163
child: LocalHeroOverlay(
166164
child: Center(
167165
child: Wrap(
168-
alignment: WrapAlignment.start,
169166
spacing: spacing,
170167
runSpacing: runSpacing,
171168
children: <Widget>[
@@ -209,7 +206,7 @@ class _WrapReorderingAnimationState extends State<_WrapReorderingAnimation> {
209206

210207
class _AcrossContainersAnimation extends StatefulWidget {
211208
const _AcrossContainersAnimation({
212-
Key key,
209+
Key? key,
213210
}) : super(key: key);
214211

215212
@override
@@ -288,15 +285,15 @@ class _AcrossContainersAnimationState
288285

289286
class _DraggableExample extends StatefulWidget {
290287
const _DraggableExample({
291-
Key key,
288+
Key? key,
292289
}) : super(key: key);
293290

294291
@override
295292
_DraggableExampleState createState() => _DraggableExampleState();
296293
}
297294

298295
class _DraggableExampleState extends State<_DraggableExample> {
299-
final List<_TileModel> tiles = <_TileModel>[];
296+
final List<_TileModel?> tiles = <_TileModel?>[];
300297

301298
@override
302299
void initState() {
@@ -332,7 +329,7 @@ class _DraggableExampleState extends State<_DraggableExample> {
332329
);
333330
}
334331

335-
void onDrag(_TileModel source, _TileModel target) {
332+
void onDrag(_TileModel? source, _TileModel? target) {
336333
// source comes before target.
337334
final int index = tiles.indexOf(target);
338335
tiles.remove(source);
@@ -343,12 +340,12 @@ class _DraggableExampleState extends State<_DraggableExample> {
343340

344341
class _DraggableTile extends StatefulWidget {
345342
_DraggableTile({
346-
Key key,
343+
Key? key,
347344
this.model,
348345
}) : child = _RawTile(model: model, size: 80),
349346
super(key: key);
350347

351-
final _TileModel model;
348+
final _TileModel? model;
352349
final Widget child;
353350

354351
@override
@@ -371,7 +368,7 @@ class _DraggableTileState extends State<_DraggableTile> {
371368
feedback: widget.child,
372369
childWhenDragging: Container(width: 80, height: 80),
373370
child: LocalHero(
374-
tag: widget.model,
371+
tag: widget.model!,
375372
enabled: !dragging,
376373
child: widget.child,
377374
),
@@ -381,11 +378,11 @@ class _DraggableTileState extends State<_DraggableTile> {
381378

382379
class LocalHeroOverlay extends StatefulWidget {
383380
const LocalHeroOverlay({
384-
Key key,
381+
Key? key,
385382
this.child,
386383
}) : super(key: key);
387384

388-
final Widget child;
385+
final Widget? child;
389386

390387
@override
391388
_LocalHeroOverlayState createState() => _LocalHeroOverlayState();
@@ -397,7 +394,7 @@ class _LocalHeroOverlayState extends State<LocalHeroOverlay> {
397394
return ClipRect(
398395
child: Overlay(
399396
initialEntries: <OverlayEntry>[
400-
OverlayEntry(builder: (context) => widget.child),
397+
OverlayEntry(builder: (context) => widget.child!),
401398
],
402399
),
403400
);
@@ -406,7 +403,7 @@ class _LocalHeroOverlayState extends State<LocalHeroOverlay> {
406403

407404
class TestOne extends StatefulWidget {
408405
const TestOne({
409-
Key key,
406+
Key? key,
410407
}) : super(key: key);
411408

412409
@override
@@ -449,7 +446,7 @@ class _TestOneState extends State<TestOne> {
449446
return Column(
450447
children: <Widget>[
451448
...children,
452-
FlatButton(
449+
TextButton(
453450
onPressed: () {
454451
setState(() {
455452
children.shuffle();

example/lib/main_example_readme.dart

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ void main() {
77

88
class _LocalHeroApp extends StatelessWidget {
99
const _LocalHeroApp({
10-
Key key,
10+
Key? key,
1111
}) : super(key: key);
1212

1313
@override
@@ -20,17 +20,17 @@ class _LocalHeroApp extends StatelessWidget {
2020

2121
class _LocalHeroPage extends StatelessWidget {
2222
const _LocalHeroPage({
23-
Key key,
23+
Key? key,
2424
}) : super(key: key);
2525

2626
@override
2727
Widget build(BuildContext context) {
28-
return Scaffold(
28+
return const Scaffold(
2929
body: SafeArea(
3030
child: LocalHeroScope(
31-
duration: const Duration(milliseconds: 300),
31+
duration: Duration(milliseconds: 300),
3232
curve: Curves.easeInOut,
33-
child: const _LocalHeroPlayground(),
33+
child: _LocalHeroPlayground(),
3434
),
3535
),
3636
);
@@ -39,7 +39,7 @@ class _LocalHeroPage extends StatelessWidget {
3939

4040
class _LocalHeroPlayground extends StatefulWidget {
4141
const _LocalHeroPlayground({
42-
Key key,
42+
Key? key,
4343
}) : super(key: key);
4444

4545
@override
@@ -65,7 +65,7 @@ class _LocalHeroPlaygroundState extends State<_LocalHeroPlayground> {
6565
),
6666
),
6767
),
68-
RaisedButton(
68+
ElevatedButton(
6969
onPressed: () {
7070
setState(() {
7171
alignment = alignment == Alignment.topLeft
@@ -82,7 +82,7 @@ class _LocalHeroPlaygroundState extends State<_LocalHeroPlayground> {
8282

8383
class _Box extends StatelessWidget {
8484
const _Box({
85-
Key key,
85+
Key? key,
8686
}) : super(key: key);
8787

8888
@override

example/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1818
version: 1.0.0+1
1919

2020
environment:
21-
sdk: ">=2.7.0 <3.0.0"
21+
sdk: '>=2.12.0 <3.0.0'
2222

2323
dependencies:
2424
flutter:
2525
sdk: flutter
2626
local_hero:
2727
path: ../
28-
equatable: ^1.2.0
28+
equatable: ^2.0.3
2929

3030

3131
# The following adds the Cupertino Icons font to your application.

0 commit comments

Comments
 (0)