Scaffold constructor
const
Scaffold({
- Key? key,
- required Widget child,
- bool primary = true,
- List<
Widget> headers = const [], - double? loadingProgress,
- bool loadingProgressIndeterminate = false,
- bool floatingHeader = false,
- Color? backgroundColor,
- Color? headerBackgroundColor,
- bool showLoadingSparks = false,
- Color? overrideBackgroundColor,
Implementation
const Scaffold({
super.key,
required this.child,
this.primary = true,
this.headers = const [],
this.footers = const [],
this.loadingProgress,
this.loadingProgressIndeterminate = false,
this.floatingHeader = false,
this.floatingFooter = false,
this.backgroundColor,
this.headerBackgroundColor,
this.footerBackgroundColor,
this.showLoadingSparks = false,
this.overrideBackgroundColor,
});