custom_grid_view 0.0.1 copy "custom_grid_view: ^0.0.1" to clipboard
custom_grid_view: ^0.0.1 copied to clipboard

Flutter package to create Grid View with full Customization as you want.

custom_grid_view #

Flutter package to create Grid View with full Customization as you want.

Getting Started #

with this package you will able to create custom gridview as you want and its easy. only this argument custom_grid_view has:

required rows,
required children,
rowSpace = 0,
colSpace = 0,
elevation = 0,
alignment = CustomGridViewAlignment.center,

here rows and children are required.

USING #

CustomGridView(
    rows: 2,
    children: [
      Container(
        color: Colors.red,
      ),
      Container(
        color: Colors.blue,
      ),
      Container(
        color: Colors.blue,
      ),
    ],
),
3
likes
140
pub points
57%
popularity

Publisher

unverified uploader

Flutter package to create Grid View with full Customization as you want.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, sizer

More

Packages that depend on custom_grid_view