SliverMainAxisGroup constructor

const SliverMainAxisGroup(
  1. {Key? key,
  2. required List<Widget> slivers}
)

Creates a sliver that places sliver children in a linear array along the main axis.

Implementation

const SliverMainAxisGroup({
  super.key,
  required List<Widget> slivers,
}) : super(children: slivers);