ResponsiveGridBreakpoints constructor

ResponsiveGridBreakpoints({
  1. double xs = 576,
  2. double sm = 768,
  3. double md = 992,
  4. double lg = 1200,
  5. double xl = 1400,
  6. double xxl = double.infinity,
})

Creates a new instance of ResponsiveGridBreakpoints.

The default values for the breakpoints are:

  • xs: 576
  • sm: 768
  • md: 992
  • lg: 1200
  • xl: 1400
  • xxl: double.infinity

Implementation

ResponsiveGridBreakpoints({
  this.xs = 576,
  this.sm = 768,
  this.md = 992,
  this.lg = 1200,
  this.xl = 1400,
  this.xxl = double.infinity,
});