-
Notifications
You must be signed in to change notification settings - Fork 157
Closed
Description
I want to be able to pass in maxItems in column then auto break to new row after the maxItems number is reached
ResponsiveRowColumn(
rowMainAxisAlignment: MainAxisAlignment.center,
rowPadding: const EdgeInsets.all(30),
columnPadding: const EdgeInsets.all(30),
layout: ResponsiveWrapper.of(context).isSmallerThan(DESKTOP)
? ResponsiveRowColumnType.COLUMN
: ResponsiveRowColumnType.ROW,
children: [
...buildDataTile(),
],
),
buildDataTile returns a List<ResponsiveRowColumnItem>
's. How can I add a maxItems to the column?
Metadata
Metadata
Assignees
Labels
No labels