Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I'm building a fully cross platform application and as such the screen size can change, the application can be windowed and resized, and much more fun stuff like that.
I noticed there is a column visibility property for GridColumns.
One thing I'm interested in is progressively hiding more columns as viewport width decreases.
In pseudocode:
If width < n show these 3 columns. if width > 2n show these 6 columns, if width > 3n show all.
With the visible property I've been able to implement this myself, but it would be cool if the GridColumn's had their own property for this baked in, or perhaps a lambda that would allow an expression to be evaluated like: autoHideWhen: (width) => width < 2n