Skip to content

Commit 84b867a

Browse files
committed
FLUT-4313-Sample updated with null safety.
1 parent 360703a commit 84b867a

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

lib/main.dart

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,14 @@ class _ViewRestrictionState extends State<ViewRestriction> {
3232
@override
3333
Widget build(BuildContext context) {
3434
return Scaffold(
35-
body: Card(
36-
margin: const EdgeInsets.fromLTRB(40, 150, 40, 150),
37-
child: SfDateRangePicker(
38-
view: DateRangePickerView.month,
39-
minDate: _minDate,
40-
maxDate: _maxDate,
35+
body: Card(
36+
margin: const EdgeInsets.fromLTRB(40, 150, 40, 150),
37+
child: SfDateRangePicker(
38+
view: DateRangePickerView.month,
39+
minDate: _minDate,
40+
maxDate: _maxDate,
41+
),
4142
),
42-
));
43+
);
4344
}
4445
}

0 commit comments

Comments
 (0)