Issue
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.
Solution
try SliverToBoxAdapter, reference:
SliverToBoxAdapter(
child: Row
)
Answered By – Jim
Answer Checked By – Mildred Charles (FlutterFixes Admin)