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

681 Views Asked by At

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

1

There are 1 best solutions below

0
Jim On BEST ANSWER

try SliverToBoxAdapter, reference:

SliverToBoxAdapter(
  child: Row
)