AdaptiveScaffold constructor

AdaptiveScaffold({
  1. GlobalKey<ScaffoldState>? scaffoldKey,
  2. Widget? title,
  3. required Widget body,
  4. List<Widget>? actions,
  5. Widget? appBar,
  6. CupertinoNavigationBar? cupertinoNavigationBar,
  7. Widget? drawer,
  8. Widget? endDrawer,
  9. Color? backgroundColor,
  10. Widget? floatingActionButton,
  11. FloatingActionButtonLocation? floatingActionButtonLocation,
  12. FloatingActionButtonAnimator? floatingActionButtonAnimator,
  13. Widget? bottomNavigationBar,
})

Implementation

AdaptiveScaffold(
    {this.scaffoldKey,
    this.title,
    required this.body,
    this.actions,
    this.appBar,
    this.cupertinoNavigationBar,
    this.drawer,
    this.endDrawer,
    this.backgroundColor,
    this.floatingActionButton,
    this.floatingActionButtonLocation,
    this.floatingActionButtonAnimator,
    this.bottomNavigationBar})
    : largeCupertino = false;