-
Notifications
You must be signed in to change notification settings - Fork 29.2k
Closed
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.
Description
Having a widget like Column
for slivers would be useful. For example for applying the same amount of padding to a heading and a list. Or for allowing abstractions to be created, e.g., a widget for a screen with a SliverAppBar plus some sliver footer and a sliver body as parameter.
Example:
CustomScrollView(
slivers: [
SliverAppBar(/* ... */),
SliverPadding(
padding: EdgeInsets.symmetric(horizontal: 16),
sliver: SliverGroup(
slivers: [
SliverToBoxAdapter(child: Text("Items)),
SliverList(/* many items */)
]
)
)
]
)
nesscx, axellebot, trietbui85, ludwiktrammer, Piinks and 23 more
Metadata
Metadata
Assignees
Labels
P2Important issues not at the top of the work listImportant issues not at the top of the work listc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityf: scrollingViewports, list views, slivers, etc.Viewports, list views, slivers, etc.frameworkflutter/packages/flutter repository. See also f: labels.flutter/packages/flutter repository. See also f: labels.
Type
Projects
Status
Done