BaseScaffold constructor

BaseScaffold({
  1. BaseAppBar? appBar,
  2. bool useBasePopScope = false,
  3. Widget? drawer,
  4. DrawerCallback? onDrawerChanged,
  5. Widget? endDrawer,
  6. DrawerCallback? onEndDrawerChanged,
  7. Color? drawerScrimColor,
  8. DragStartBehavior drawerDragStartBehavior = DragStartBehavior.start,
  9. double? drawerEdgeDragWidth,
  10. bool drawerEnableOpenDragGesture = true,
  11. bool endDrawerEnableOpenDragGesture = true,
  12. Widget? body,
  13. Color? backgroundColor,
  14. Widget? bottomNavigationBar,
  15. bool extendBody = false,
  16. bool? resizeToAvoidBottomInset,
  17. Widget? floatingActionButton,
  18. FloatingActionButtonLocation? floatingActionButtonLocation,
  19. FloatingActionButtonAnimator? floatingActionButtonAnimator,
})

Implementation

BaseScaffold({
  this.appBar,
  this.useBasePopScope = false,
  this.drawer,
  this.onDrawerChanged,
  this.endDrawer,
  this.onEndDrawerChanged,
  this.drawerScrimColor,
  this.drawerDragStartBehavior = DragStartBehavior.start,
  this.drawerEdgeDragWidth,
  this.drawerEnableOpenDragGesture = true,
  this.endDrawerEnableOpenDragGesture = true,
  this.body,
  this.backgroundColor,
  this.bottomNavigationBar,
  this.extendBody = false,
  this.resizeToAvoidBottomInset,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.floatingActionButtonAnimator,
});