Home > Enterprise >  How do I an extra widget in between SliverAppBar and SliverList/Grid?
How do I an extra widget in between SliverAppBar and SliverList/Grid?

Time:11-10

I want to add a similar item between my SliverAppBar and SliverList. I tried using a regular Row, but it kept throwing an exception. I know about SliverPadding, so I was wondering if there's something similar. Any help would be greatly appreciated.

img

CodePudding user response:

try SliverToBoxAdapter, reference:

SliverToBoxAdapter(
  child: Row
)
  • Related