Hi!
I have a page using slivers and the SearchableList.sliver is perfect. Unfortunately it renders an AppBar below the searchbar and I am unable to get rid of it.
Any idea why?

The approximate structure of my page is:
Scaffold(
body: NestedScrollView(
headerSliverBuilder: [
SliverAppBar(
flexibleSpace: FlexibleSpaceBar(
...
)
bottom: TabBar(...)
)
]
body: TabBarView(
children: [
OtherPage(),
SearchableList.sliver
]
)
)
)
Hi!
I have a page using slivers and the
SearchableList.sliveris perfect. Unfortunately it renders anAppBarbelow the searchbar and I am unable to get rid of it.Any idea why?
The approximate structure of my page is: