buildScaffold method

Widget? buildScaffold(
  1. BuildContext context
)

The Scaffold used by this webpage.

Implementation

Widget? buildScaffold(BuildContext context) => Scaffold(
      appBar: appBar ?? onAppBar(),
      body: body(context),
      drawer: drawer(context),
      onDrawerChanged: onDrawerChanged(context),
      endDrawer: endDrawer(context),
      onEndDrawerChanged: onEndDrawerChanged(context),
      bottomNavigationBar: bottomNavigationBar(context),
      bottomSheet: bottomSheet(context),
      backgroundColor: backgroundColor,
      resizeToAvoidBottomInset: resizeToAvoidBottomInset,
      primary: primary ?? true,
      drawerDragStartBehavior:
          drawerDragStartBehavior ?? DragStartBehavior.start,
      extendBody: extendBody ?? false,
      extendBodyBehindAppBar: extendBodyBehindAppBar ?? false,
      drawerScrimColor: drawerScrimColor,
      drawerEdgeDragWidth: drawerEdgeDragWidth,
      drawerEnableOpenDragGesture: drawerEnableOpenDragGesture ?? true,
      endDrawerEnableOpenDragGesture: endDrawerEnableOpenDragGesture ?? true,
      restorationId: restorationId,
    );