ZdsHorizontalList.builder constructor
- {Key? key,
- BuilderCallback? itemBuilder,
- int? itemCount,
- Widget? caption,
- bool isReducedHeight = false}
Makes a horizontal ListView.builder that sizes itself to its children.
Implementation
ZdsHorizontalList.builder({
super.key,
BuilderCallback? itemBuilder,
int? itemCount,
super.caption,
super.isReducedHeight,
}) : super(
delegate: _ZdsHorizontalListBuilderDelegate(itemBuilder, itemCount),
);