diff --git a/lib/home_page.dart b/lib/home_page.dart index b1b2745..dc222b0 100644 --- a/lib/home_page.dart +++ b/lib/home_page.dart @@ -59,7 +59,8 @@ class RootPage extends State { @override Widget build(BuildContext context) { - return Scaffold( + return SafeArea( + child: Scaffold( drawer: Drawer( child: ListView.builder( itemCount: routes.length, @@ -103,7 +104,7 @@ class RootPage extends State { ], ), body: getBody(), - ); + )); } }