Skip to main content
The Stac SliverList allows you to build a Flutter sliver list widget using JSON. It displays its children in a linear, scrollable list within a sliver context. This widget must be used inside a CustomScrollView. To learn more about the SliverList widget in Flutter, refer to the official documentation.

Properties

Note Children of SliverList must be box widgets (for example Container, Text, etc.). To apply padding, opacity, or other sliver-level effects, wrap the SliverList with widgets such as SliverPadding or SliverOpacity.

Example