expanded_grid

Last updated:

0 purchases

expanded_grid Image
expanded_grid Images
Add to Cart

Description:

expanded grid

expanded_grid #

An unscrollable Grid View.

Usage #
First, determine column and row size.
Default size is column = row = 1.
ExpandedGrid(
column: 4,
row: 5,
)
copied to clipboard
Second, pass ExpandedGridContent List to children.
If ExpandedGridContent specifies out of range, it is ignored.
Default position is (0,0).
ExpandedGrid(
column: 4, row: 5,
children: <ExpandedGridContent>[
ExpandedGridContent(
rowIndex: 0, columnIndex: 0,
rowSpan: 2, columnSpan: 3,
child: Container(color: Colors.blue,)
),
//...
]
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.