ProScaffold constructor
const
ProScaffold({
- Key? key,
- PreferredSizeWidget? appBar,
- Widget? body,
- Widget? drawer,
- Color? backgroundColor,
- Color? statusBarColorAndroid,
- Brightness? statusBarItemsColor,
- 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);