shyndman / flutter_layout_grid

A grid-based layout system for Flutter, inspired by CSS Grid Layout
MIT License
441 stars 43 forks source link

Is it possible to center all elements of a LayoutGrid? #67

Closed CaptainDario closed 3 years ago

CaptainDario commented 3 years ago

Hi, thanks for this great plugin I really like it for developing responsive UI's. I am wondering if there is an option to center all elements of the grid (except for wrapping every widget in a Center). Something like MainAxisAlignment: MainAxisAlignment.center

shyndman commented 3 years ago

That's great to hear. Thank you. :)

No, there isn't. My goal is to keep this package tightly focused on a single purpose, and I think this particular problem can be solved in a number of ways by the user (like as you said, using the Center widget).

Sorry about that.