Base Scaffold

Encapsulate Scaffold with common functionality.

Attributes:

Name
Type
Description
Default Value
Required
Nullable
builder
Widget Function(
  BuildContext context, 
  ThemeData theme
)
Displayed below the [appBar], above the bottom of the ambient [MediaQuery]'s [MediaQueryData.viewInsets], and behind the [floatingActionButton] and [drawer]. If [resizeToAvoidBottomInset] is false then the body is not resized when the onscreen keyboard appears, i.e. it is not inset by viewInsets.bottom.-
appBar
PreferredSizeWidget Function(
  BuildContext context, 
  ThemeData theme
)
An app bar to display at the top of the scaffold.-
backgroundColor
Color
The color of the [Material] widget that underlies the entire Scaffold.-
bottomNavigationBar
Widget
A bottom navigation bar to display at the bottom of the scaffold.-
resizeToAvoidBottomInset
bool
Scaffold's floating widgets should size themselves to avoid the onscreen keyboard whose height is defined by the ambient [MediaQuery]'s-
floatingActionButton
FloatingActionButton
Scaffold AppBar Floating Action Button-
floatingActionButtonLocation
FloatingActionButtonLocation
Responsible for determining where the [floatingActionButton] should go.-
extendBodyBehindAppBar
bool
If true, and an [appBar] is specified, then the height of the [body] is extended to include the height of the app bar and the top of the body is aligned with the top of the app bar.-