I don't know how to make a SliverAppBar at the bottom. I want it not to disappear when scrolling, I tried but it will show only on the bottom of the scroll.
SliverAppBar at the bottom of the screen (flutter)
2.5k views Asked by Aquiko At
2
There are 2 answers
0
On
I did figure it out btw :D using this
bottomNavigationBar: BottomAppBar(
child: Row(
children: [
IconButton(icon: Icon(Icons.menu), onPressed: () {}),
Spacer(),
IconButton(icon: Icon(Icons.search), onPressed: () {}),
IconButton(icon: Icon(Icons.more_vert), onPressed: () {}),
],
),
),
inside of Scaffold
Sorry I thought SliverAppBar is same as all AppBar, NOOB here
Inside SliverAppBar Enable floating property true. For example: