Last updated:
0 purchases
responsive row
ResponsiveRow #
This lib is able to generate adaptive layouts according to the device size
- Examples #
// ResponsiveRow
ResponsiveRow(
alignment: WrapAlignment.spaceBetween,
children: [
ResponsiveCol(
lg: Sizes.col3, //optional field
md: Sizes.col6, //optional field
sm: Sizes.col12, //optional field
child: Container(
height: 100,
margin: const EdgeInsets.all(10),
color: Colors.green,
),
)
],
),
copied to clipboard
// ResponsiveRow.builder
ResponsiveRow.builder(
itemCount: 10,
itemBuilder: (index) {
return ResponsiveCol(
child: Container(
height: 100,
margin: const EdgeInsets.all(10),
color: Colors.red,
),
);
},
),
copied to clipboard
Feito com ❤️ by welitonsousa
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.