Skip to content

Commit

Permalink
Merge pull request #88 from proninyaroslav/null-safety-fix
Browse files Browse the repository at this point in the history
Fix warning
  • Loading branch information
daadu authored Mar 10, 2021
2 parents 1da2ac9 + 9e264ee commit 6d698cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/scaffold.dart
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ class BackdropScaffoldState extends State<BackdropScaffold>
child: _MeasureSize(
onChange: (size) =>
setState(() => _backPanelHeight = size.height),
child: widget.backLayer ?? Container(),
child: widget.backLayer,
),
),
],
Expand Down

0 comments on commit 6d698cb

Please sign in to comment.