ResponsiveContainer constructor
const
ResponsiveContainer({
- Key? key,
- required Widget builder(
- BuildContext context,
- BoxConstraints constraints,
- ScreenSize screenSize
- Breakpoints breakpoints = const Breakpoints(),
- double? minWidth,
- double? minHeight,
- double? maxWidth,
- double? maxHeight,
- double? aspectRatio,
Creates a ResponsiveContainer widget.
Implementation
const ResponsiveContainer({
super.key,
required this.builder,
this.breakpoints = const Breakpoints(),
this.minWidth,
this.minHeight,
this.maxWidth,
this.maxHeight,
this.aspectRatio,
});