ResponsiveScaffold constructor

const ResponsiveScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. Widget? drawer,
  4. Widget? child,
  5. Widget? bottomNavigationBar,
  6. Widget? floatingActionButton,
})

Implementation

const ResponsiveScaffold({
  super.key,
  this.appBar,
  this.drawer,
  this.child,
  this.bottomNavigationBar,
  this.floatingActionButton,
});