scaffold property

  1. @override
Widget get scaffold
override

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,
  );
}