AdwScaffold constructor

const AdwScaffold({
  1. Key? key,
  2. required Widget body,
  3. AdwSidebar flap(
    1. bool isDrawer
    )?,
  4. FlapStyle? flapStyle,
  5. FlapOptions? flapOptions,
  6. FlapController? flapController,
  7. @Deprecated('headerbar is deprecated, use the properties separately') AdwHeaderBar? headerbar(
    1. Widget?
    )?,
  8. Widget? viewSwitcher,
  9. double? viewSwitcherConstraint,
  10. HeaderBarStyle? headerBarStyle,
  11. List<Widget>? start,
  12. Widget? title,
  13. List<Widget>? end,
  14. required AdwActions actions,
  15. AdwControls? controls,
})

Implementation

const AdwScaffold({
  Key? key,
  required this.body,
  this.flap,
  this.flapStyle,
  this.flapOptions,
  this.flapController,
  @Deprecated('headerbar is deprecated, use the properties separately')
      AdwHeaderBar? Function(Widget?)? headerbar,
  this.viewSwitcher,
  this.viewSwitcherConstraint,
  this.headerBarStyle,
  this.start,
  this.title,
  this.end,
  required this.actions,
  this.controls,
}) : super(key: key);