dynamic_height_grid_view 0.0.2 copy "dynamic_height_grid_view: ^0.0.2" to clipboard
dynamic_height_grid_view: ^0.0.2 copied to clipboard

outdated

GridView with dynamic height. No need to specify aspectRatio to the grid.

dynamic_height_grid_view #

pub package License: MIT

GridView with dynamic height. No need to use aspectRatio.

Usage #

class MyHomePage extends StatelessWidget {
  const MyHomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: DynamicHeightGridView(
        itemCount: 120,
        crossAxisCount: 3,
        crossAxisSpacing: 10,
        mainAxisSpacing: 10,
        builder: (ctx, index) {
          /// return your widget here.
        }
      ),
    );
  }
}
  • Use SliverDynamicHeightGridView for CustomScrollView
81
likes
0
pub points
96%
popularity

Publisher

verified publisherbookm.me

GridView with dynamic height. No need to specify aspectRatio to the grid.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_hooks

More

Packages that depend on dynamic_height_grid_view