scaffold property
Implementation
@override
Widget get scaffold {
return Scaffold(
resizeToAvoidBottomInset: resizeToAvoidBottomInset,
extendBodyBehindAppBar: extendBodyBehindAppBar,
extendBody: extendBody,
backgroundColor: backgroundColor,
appBar: appBar != null
? PreferredSize(
preferredSize: Size.fromHeight(appBarHeight),
child: appBar!,
)
: null,
body: statusBody,
bottomNavigationBar: bottomBar,
);
}