ScreenLayout constructor
const
ScreenLayout({
- Key? key,
- Widget? child,
- ScreenLayoutBreakpoints? breakpoints,
- 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,
});