MainAspectComponentOptions constructor
- {required Color backgroundColor,
- required List<
Widget> children, - bool showControls = true,
- double containerWidthFraction = 1.0,
- double containerHeightFraction = 1.0,
- double defaultFraction = 0.94,
- required dynamic updateIsWideScreen( ),
- required dynamic updateIsMediumScreen( ),
- required dynamic updateIsSmallScreen( )}
Constructs a MainAspectComponentOptions object.
Implementation
const MainAspectComponentOptions({
required this.backgroundColor,
required this.children,
this.showControls = true,
this.containerWidthFraction = 1.0,
this.containerHeightFraction = 1.0,
this.defaultFraction = 0.94,
required this.updateIsWideScreen,
required this.updateIsMediumScreen,
required this.updateIsSmallScreen,
});