AdaptiveScope constructor
const
AdaptiveScope({
- Key? key,
- required Widget child,
- AdaptiveBreakpoints breakpoints = const AdaptiveBreakpoints(),
- DesignSize designSize = const DesignSize(),
- ScreenSizeBreakpoints screenSizeBreakpoints = const ScreenSizeBreakpoints(),
Creates an AdaptiveScope with the given configuration.
All configuration parameters are optional and will use sensible defaults.
Implementation
const AdaptiveScope({
super.key,
required this.child,
this.breakpoints = const AdaptiveBreakpoints(),
this.designSize = const DesignSize(),
this.screenSizeBreakpoints = const ScreenSizeBreakpoints(),
});