responsive_row

Creator: coderz1093

Last updated:

0 purchases

responsive_row Image
responsive_row Images
Add to Cart

Description:

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

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.

Related Products

More From This Creator