UdScaffold constructor

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

UdScaffold uses flutter Scaffold but we added more option for you.

Implementation

UdScaffold({
  this.appBar,
  this.body,
  this.bottomNavigationBar,
  this.drawer,
  this.backgroundColor,
  this.statusBarColorAndroid,
  this.statusBarItemsColor,
  this.resizeToAvoidBottomInset,
});