Skip to content

ankushmishra2903-official/custom_grid_view

Repository files navigation

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,
      ),
    ],
),

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published