diff --git a/lib/pages/home.dart b/lib/pages/home.dart index 1b7a25d..26f53d3 100644 --- a/lib/pages/home.dart +++ b/lib/pages/home.dart @@ -140,7 +140,7 @@ class _HomePageState extends State { Widget body; if (Platform.isAndroid || Platform.isIOS) { drawer = navigation; - body = main; + body = SafeArea(child: main); } else { drawer = null; body = Row( @@ -157,7 +157,7 @@ class _HomePageState extends State { title: Text("Expense Tracker"), ), drawer: drawer, - body: SafeArea(child: body), + body: body, floatingActionButton: floatingButton, extendBody: false, extendBodyBehindAppBar: false,