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.
CodePudding user response:
try SliverToBoxAdapter, reference:
SliverToBoxAdapter(
child: Row
)