NomoScaffold constructor

const NomoScaffold(
  1. {dynamic key,
  2. required dynamic child,
  3. dynamic appBar,
  4. dynamic bottomBar,
  5. dynamic sider,
  6. dynamic bottomSheet,
  7. dynamic padding,
  8. dynamic backgroundColor,
  9. bool? showBottomBar,
  10. bool? showSider,
  11. dynamic drawer,
  12. dynamic nestedAppBar,
  13. dynamic endDrawer}
)

Implementation

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