Skip to content

Commit 61cafcd

Browse files
committed
Tambahkan widget SafeArea di widget ListView
1 parent 87ec080 commit 61cafcd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/src/ui/home/home_screen.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@ class _HomeScreenState extends State<HomeScreen> {
2323
return Stack(
2424
children: <Widget>[
2525
_buildWidgetBackground(),
26-
ListView(
27-
children: <Widget>[
28-
_buildWidgetContent(),
29-
],
26+
SafeArea(
27+
child: ListView(
28+
children: <Widget>[
29+
_buildWidgetContent(),
30+
],
31+
),
3032
),
3133
],
3234
);

0 commit comments

Comments
 (0)