Make your app responsive by implementing breakpoints based on Boostrap 4.0+.

Features

  1. Get the screen width from BuildContext.
  2. Get the current breakpoint.
  3. Get the max width based on the current breakpoint. Max width can be modified by the user.

Getting started

  1. To use this plugin, add bootstrap_breakpoints as a dependency in your pubspec.yaml file.
  dependencies:
    bootstrap_breakpoints:

or run:

flutter pub add bootstrap_breakpoints
  1. Now in your Dart code, you can use:
import 'package:bootstrap_breakpoints/bootstrap_breakpoints.dart';

Usage

See /example folder.