ProScaffold constructor

const ProScaffold({
  1. Key? key,
  2. PreferredSizeWidget? appBar,
  3. Widget? body,
  4. Widget? bottomNavigationBar,
  5. Widget? drawer,
  6. Color? backgroundColor,
  7. Color? statusBarColorAndroid,
  8. Brightness? statusBarItemsColor,
  9. bool? resizeToAvoidBottomInset,
})

ProScaffold uses flutter Scaffold but we made it more easier.

Implementation

const ProScaffold({
  Key? key,
  this.appBar,
  this.body,
  this.bottomNavigationBar,
  this.drawer,
  this.backgroundColor,
  this.statusBarColorAndroid,
  this.statusBarItemsColor,
  this.resizeToAvoidBottomInset,
}) : super(key: key);