Reputation: 435
I'm trying display a slivergridview view and it just doesn't look good if it's always on full width especially on large screens
But CustomScrollView only accepts sliver widgets, which makes container & sizedbox unusable. What is your workaround on this one?
Upvotes: 4
Views: 1102
Reputation: 435
SliverPadding(
padding: EdgeInsets.symmetric(
vertical: 15,
horizontal: max((constraints.maxWidth - 1200) / 2, 0) > 15 ? max((constraints.maxWidth - 1200) / 2, 0) : 15),
sliver: SliverGrid( ...
Upvotes: 6