responsive_row 1.0.1 copy "responsive_row: ^1.0.1" to clipboard
responsive_row: ^1.0.1 copied to clipboard

This lib is able to generate adaptive layouts according to the device size

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,
      ),
    )
  ],
),
// ResponsiveRow.builder
ResponsiveRow.builder(
  itemCount: 10,
  itemBuilder: (index) {
    return ResponsiveCol(
      child: Container(
        height: 100,
        margin: const EdgeInsets.all(10),
        color: Colors.red,
      ),
    );
  },
),

Feito com ❤️ by welitonsousa

2
likes
130
pub points
15%
popularity

Publisher

unverified uploader

This lib is able to generate adaptive layouts according to the device size

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on responsive_row