ScaffoldMinWidth constructor
const
ScaffoldMinWidth({})
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);