ResponsiveScaffold constructor

const ResponsiveScaffold({
  1. Key? key,
  2. Key? scaffoldKey,
  3. Widget? drawer,
  4. Widget? endDrawer,
  5. AppBar? appBar,
  6. Widget? body,
  7. Widget? title,
  8. Widget? trailing,
  9. bool? centerTitle,
  10. Widget? floatingActionButton,
  11. IconData? menuIcon,
  12. IconData? endIcon,
  13. double kTabletBreakpoint = 720.0,
  14. double kDesktopBreakpoint = 1440.0,
})

Implementation

const ResponsiveScaffold({
  Key? key,
  this.scaffoldKey,
  this.drawer,
  this.endDrawer,
  this.appBar,
  this.body,
  this.title,
  this.trailing,
  this.centerTitle,
  this.floatingActionButton,
  this.menuIcon,
  this.endIcon,
  this.kTabletBreakpoint = 720.0,
  this.kDesktopBreakpoint = 1440.0,
}) : super(key: key);