ScreenLayout constructor

const ScreenLayout({
  1. Key? key,
  2. Widget? child,
  3. ScreenLayoutBreakpoints? breakpoints,
  4. String? name,
})

Creates a ScreenLayout with the name name that adjusts the size of the widget specified in child based on the configuration in breakpoints.

Implementation

const ScreenLayout({
  super.key,
  super.child,
  this.breakpoints,
  this.name,
});