Right now my solution is using a combination of SliverToBoxAdapter
, Row
, and ShrinkWrappingViewport
to make the layout I want.
return CustomScrollView(
slivers: [
SliverToBoxAdapter(
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Flexible(
flex: 2,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: ShrinkWrappingViewport(
slivers: _renderContent(context, main),
offset: ViewportOffset.zero(),
),
),
),
Flexible(
flex: 1,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: ShrinkWrappingViewport(
slivers: _renderContent(context, sidebar),
offset: ViewportOffset.zero(),
),
),
),
],
),
),
Footer(),
],
);
Is there any elegant solution or sliver adapter that can be used as an alternative to row in CustomSrollView
?
TLDR – use this widget, it takes two slivers as arguments which will be shown in the row layout
Well, it's not really a
Row
analog because it doesn't supportFlex
widgets (Flexible
,Expanded
), but you still can use two different slivers in a row layout and combine them as many times as you wish.Though you need to provide size to the left one, which can be either hardcoded or calculated based on
SliverLayoutBuilder
's constraintsHere's the live example https://dartpad.dev/?id=d8513c8d6438e628f7efa6e7866983ee
P.S. I tested it only for vertical lists and only from top to bottom direction so in a reversed list could be strange behavior. Feel free to modify this solution to provide better support for described scenarios.