buildScaffold method
Widget
buildScaffold(
- BuildContext context, {
- PreferredSizeWidget? appBar,
- Widget? bottomBar,
- Widget? drawer,
- required Widget body,
Implementation
Widget buildScaffold(BuildContext context, {PreferredSizeWidget? appBar, Widget? bottomBar, Widget? drawer, required Widget body}) {
return Scaffold(key: UniqueKey(), appBar: appBar, bottomNavigationBar: bottomBar, drawer: drawer, body: body);
}