ResponsiveScaffold constructor

const ResponsiveScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. Widget? body,
  4. double? bodyMaxWidth,
  5. Widget? bottomNavigationBar,
  6. Widget? drawer,
  7. Widget? floatingActionButton,
  8. FloatingActionButtonLocation? floatingActionButtonLocation,
  9. DrawerCallback? onDrawerChanged,
  10. List<Widget>? persistentFooterButtons,
  11. Widget? sidebar,
})

Implementation

const ResponsiveScaffold({
  Key? key,
  this.appBar,
  this.body,
  this.bodyMaxWidth,
  this.bottomNavigationBar,
  this.drawer,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.onDrawerChanged,
  this.persistentFooterButtons,
  this.sidebar,
})  : assert(bodyMaxWidth == null || bodyMaxWidth > 0.0),
      super(key: key);