Last updated:
0 purchases
page grid
Page Grid #
Demo #
How to use #
Create Page Grid
PageGrid(
head: Container(color: Colors.yellow),
body: Container(color: Colors.red),
footer: Container(color: Colors.pink),
)
copied to clipboard
Mirror Page Grid
PageGrid(
mirror: true,
head: Container(color: Colors.yellow),
body: Container(color: Colors.red),
footer: Container(color: Colors.pink),
)
copied to clipboard
Customize Grid
PageGrid(
mirror: true,
mobileFlex: const BodyFlex(footer: 0),
desktopFlex: const BodyFlex(),
head: Container(color: Colors.yellow),
body: Container(color: Colors.red),
footer: Container(color: Colors.pink),
)
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.