Prashant4900/page_grid
Einfaches und flexibles Rastersystem für Flutter
- Stars
- 5
- Forks
- 0
- Letzter Push (UTC)
- 26.03.2022
- Projektstatus
- Aktiv
SprachenC++CMakeDartHTMLCSwiftKotlinObjective-C
Technische Themen
Verwendete Abhängigkeiten
Abhängigkeiten 4 Einträge
- flutter
{"sdk":"flutter"} - nil
^1.1.1 - flutter_testEntwicklung
{"sdk":"flutter"} - flutter_lintsEntwicklung
^1.0.0
Original-README
Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Projekt-README ein-/ausklappen
Page Grid
https://user-images.githubusercontent.com/62440911/160253683-3c3f9419-8347-40d7-89ad-85671a3872b3.pngDemo
flutter_flex
How to use
- Create Page Grid
PageGrid(
head: Container(color: Colors.yellow),
body: Container(color: Colors.red),
footer: Container(color: Colors.pink),
)
- Mirror Page Grid
PageGrid(
mirror: true,
head: Container(color: Colors.yellow),
body: Container(color: Colors.red),
footer: Container(color: Colors.pink),
)
- 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),
)