ScaffoldMinWidth constructor

const ScaffoldMinWidth({
  1. Key? key,
  2. required Widget body,
  3. double minWidth = 600,
  4. Color? backgroundColor,
  5. Color? backgroundColorBody,
  6. EdgeInsets? padding,
  7. Widget? title,
  8. Widget? bottomNavigationBar,
  9. Widget? floatingActionButton,
  10. AppBar? appBar,
  11. bool? automaticallyImplyLeading,
})

Constructs a ScaffoldMinWidth widget.

The body parameter is required and represents the main content of the scaffold. The minWidth parameter sets the minimum width enforced for the scaffold. The other parameters are optional and allow customization of the scaffold's appearance.

Implementation

const ScaffoldMinWidth({
  Key? key,
  required this.body,
  this.minWidth = 600,
  this.backgroundColor,
  this.backgroundColorBody,
  this.padding,
  this.title,
  this.bottomNavigationBar,
  this.floatingActionButton,
  this.appBar,
  this.automaticallyImplyLeading,
}) : super(key: key);