ContextualScaffold<T> constructor

const ContextualScaffold<T>({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. required ContextualAppBar<T> contextualAppBar,
  4. Widget? body,
  5. Widget? floatingActionButton,
  6. FloatingActionButtonLocation? floatingActionButtonLocation,
  7. FloatingActionButtonAnimator? floatingActionButtonAnimator,
  8. List<Widget>? persistentFooterButtons,
  9. Widget? drawer,
  10. Widget? endDrawer,
  11. Widget? bottomNavigationBar,
  12. Widget? bottomSheet,
  13. Color? backgroundColor,
  14. bool? resizeToAvoidBottomInset,
  15. bool primary = true,
  16. DragStartBehavior drawerDragStartBehavior = DragStartBehavior.start,
  17. bool extendBody = false,
  18. bool extendBodyBehindAppBar = false,
  19. Color? drawerScrimColor,
  20. double? drawerEdgeDragWidth,
})

Implementation

const ContextualScaffold({
  Key? key,
  this.appBar,
  required this.contextualAppBar,
  this.body,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.floatingActionButtonAnimator,
  this.persistentFooterButtons,
  this.drawer,
  this.endDrawer,
  this.bottomNavigationBar,
  this.bottomSheet,
  this.backgroundColor,
  this.resizeToAvoidBottomInset,
  this.primary = true,
  this.drawerDragStartBehavior = DragStartBehavior.start,
  this.extendBody = false,
  this.extendBodyBehindAppBar = false,
  this.drawerScrimColor,
  this.drawerEdgeDragWidth,
}) : super(key: key);