NomoScaffold constructor

const NomoScaffold({
  1. required Widget child,
  2. Key? key,
  3. NomoAppBar? appBar,
  4. Widget? bottomBar,
  5. Widget? sider,
  6. Widget? bottomSheet,
  7. EdgeInsetsGeometry? padding,
  8. Color? backgroundColor,
  9. bool? showBottomBar,
  10. bool? showSider,
  11. Widget? drawer,
  12. Widget? nestedAppBar,
  13. Widget? endDrawer,
  14. Widget? floatingActionButton,
  15. FloatingActionButtonLocation? floatingActionButtonLocation,
  16. DecorationImage? backgroundImage,
})

Implementation

const NomoScaffold({
  required this.child,
  super.key,
  this.appBar,
  this.bottomBar,
  this.sider,
  this.bottomSheet,
  this.padding,
  this.backgroundColor,
  this.showBottomBar,
  this.showSider,
  this.drawer,
  this.nestedAppBar,
  this.endDrawer,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.backgroundImage,
});