diff --git a/lib/screens/shared/sliver_screen/screen_sliver.dart b/lib/screens/shared/sliver_screen/screen_sliver.dart index cae353d..22f3029 100644 --- a/lib/screens/shared/sliver_screen/screen_sliver.dart +++ b/lib/screens/shared/sliver_screen/screen_sliver.dart @@ -25,18 +25,24 @@ class SliverScreen extends StatelessWidget { body: SafeArea( top: false, bottom: false, - child: CustomScrollView( - slivers: [ - _AppBar( - title: title, - appBarActions: appBarActions, - bottom: bottom, + child: Column( + children: [ + Expanded( + child: CustomScrollView( + slivers: [ + _AppBar( + title: title, + appBarActions: appBarActions, + bottom: bottom, + ), + ...slivers, + ], + ), ), - ...slivers, + if (bottomNavigationBar != null) bottomNavigationBar!, ], ), ), - bottomNavigationBar: bottomNavigationBar, ); } }