ResponsiveBreakpoints constructor

const ResponsiveBreakpoints({
  1. Key? key,
  2. required Widget child,
  3. required List<Breakpoint> breakpoints,
  4. List<Breakpoint>? breakpointsLandscape,
  5. List<ResponsiveTargetPlatform>? landscapePlatforms,
  6. bool useShortestSide = false,
  7. bool debugLog = false,
})

A wrapper widget that makes child widgets responsive.

Implementation

const ResponsiveBreakpoints({
  super.key,
  required this.child,
  required this.breakpoints,
  this.breakpointsLandscape,
  this.landscapePlatforms,
  this.useShortestSide = false,
  this.debugLog = false,
});