flutter_bootstrap icon indicating copy to clipboard operation
flutter_bootstrap copied to clipboard

Flutter Bootstrap Grid System

Results 10 flutter_bootstrap issues
Sort by recently updated
recently updated
newest added

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 ? ![Screenshot 2021-01-29 at 18 04 52](https://user-images.githubusercontent.com/4647229/106305202-b057f600-625c-11eb-85b7-c5b14c607478.png)

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...