How to create SliverAppBar with bottom like this example:
SliverAppBar MGM Resort
Related
I have a CustomScrollView with several slivers and a floating sliver app bar at the top. I'd like to be able to tap the app bar and have it expand vertically over the slivers below. Currently expanding the panel pushes the subsequent slivers down instead of expanding over them.
how to keep a specific container of a ListView on the top of the screen when scrolling down?
for example:
appBar
image1(inside the listview)
tabs(should stay below appBar but image1 disappears when scrolling down)
list item 1
list item 2
....
navBar
You have to work with SliverList and SliverAppBar to achieve a layout like that.
Read more about it in this article.
How can I add some gradient to a title only when SliverAppBar is expanded ?
Tried recreating this UI using SliverAppBar but without getting scroll info i was not able to update the appbar title according to the position. Is there any other way to do this other than SliverAppBar or can i get the scroll position from the sliver to change the state of AppBar title accordingly?
I use a CustomScrollView and for children I have SliverAppBar and SliverList. So right now list is being rendered after app bar but my app bar is transparent and I would like list to be rendered under app bar (basically ignoring AppBar). Is it possible to do?