fixed bottom navigation bar behaviour

This commit is contained in:
Vadim 2025-08-08 13:37:33 +02:00
parent a9c3489c8e
commit 9d04593479

View file

@ -25,18 +25,24 @@ class SliverScreen extends StatelessWidget {
body: SafeArea(
top: false,
bottom: false,
child: CustomScrollView(
slivers: <Widget>[
_AppBar(
title: title,
appBarActions: appBarActions,
bottom: bottom,
child: Column(
children: [
Expanded(
child: CustomScrollView(
slivers: <Widget>[
_AppBar(
title: title,
appBarActions: appBarActions,
bottom: bottom,
),
...slivers,
],
),
),
...slivers,
if (bottomNavigationBar != null) bottomNavigationBar!,
],
),
),
bottomNavigationBar: bottomNavigationBar,
);
}
}