MainScreenComponentOptions constructor

MainScreenComponentOptions(
  1. {required double mainSize,
  2. required bool doStack,
  3. double containerWidthFraction = 1,
  4. double containerHeightFraction = 1,
  5. required dynamic updateComponentSizes(
    1. ComponentSizes
    ),
  6. double defaultFraction = 0.94,
  7. bool showControls = false,
  8. required List<Widget> children}
)

Implementation

MainScreenComponentOptions({
  required this.mainSize,
  required this.doStack,
  this.containerWidthFraction = 1,
  this.containerHeightFraction = 1,
  required this.updateComponentSizes,
  this.defaultFraction = 0.94,
  this.showControls = false,
  required this.children,
});