flutter_bootstrap
flutter_bootstrap copied to clipboard
Flutter Bootstrap Grid System
Mostly we are using this for containers and mobile screens margin/padding is cover unnecessary space so, we want to remove or custom configuration of padding/margin between columns and rows. if...
Added availability for breakpoints customization ```dart bootstrapGridParameters( breakpoints: const BootstrapGridBreakpoints( xs: 600, sm: 905, md: 1240, lg: 1440, ), ); ```
I added a Col class to avoid writing the class name as css exemple : sizes : [ Col.xs1 , Col.sm1, Col.md3 ].join(" ")
Hey there, Is there a way to set the height of BootstrapContainer to fit screen height? Thanks
On Flutter's Row & Column, there are cross-axis & main-axis alignment which is not available to your package
Hi there, how could I reduce the space between two BootstrapColumn ? 
line 619 if (pfx == '') { pfx = 'xs'; } should be replaced with if (pfx == null) { pfx = 'xs'; } i am having issue with empty...
The current version of `flutter_bootstrap` is not null-safe. Will you [make it null-safe](https://flutter.dev/docs/null-safety)?
MD sizes start from 768 not 769
With Flutter's awesome animations, I wonder if it would be possible to add an `animated` property to BootstrapContainer? It's hard to imagine just what that might look like, but it...