FLUTTER ECOSYSTEM

boeledi/flutter_bootstrap

Flutter Bootstrap ग्रिड प्रणाली

flutter_bootstrap प्रोजेक्ट कवर
Stars
86
Forks
20
अंतिम पुश (UTC)
28 अप्रैल 2022
प्रोजेक्ट स्थिति
सक्रिय
Didier Boelens GitHub avatar
GITHUB User

Didier Boelens ↗

AI & Flutter enthusiast - Exploring the potential and future of Artificial Intelligence

भाषाएँDart

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 1 आइटम
  • flutter{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

flutter_bootstrap

A partial implementation of Bootstrap Grid system in Flutter for Responsive Layout.

https://raw.githubusercontent.com/boeledi/flutter_bootstrap/HEAD/flutter_bootstrap.gif


Getting Started

You should ensure that you add the following dependency in your Flutter project.

dependencies:
 flutter_bootstrap: "^2.0.0"

You should then run flutter packages upgrade or update your packages in IntelliJ.

In your Dart code, to use it:

import 'package:flutter_bootstrap/flutter_bootstrap.dart';

Documentation

This package exposes 4 new Widgets:

  • BootstrapContainer
  • BootstrapRow
  • BootstrapCol
  • BootstrapVisibility

...and a series of helper methods:

  • bootstrapGridParameters
  • bootstrapPrefixBasedOnWidth
  • bootstrapMaxWidthNonFluid
  • bootStrapValueBasedOnSize

It implements the following Bootstrap4 features:

  • .container
  • .container-fluid
  • .row
  • .col-*, .col-sm-*, .col-md-*, .col-lg-*, .col-xl-*
  • .offset-*, .offset-sm-*, .offset-md-*, .offset-lg-*, .offset-xl-*
  • .order-*, .order-sm-*, .order-md-*, .order-lg-*, .order-xl-*
  • conditional visibility based on device width and column definition

Full documentation and examples can be found on my website.


Example

An example can be found in the example folder. Check it out.