MyScaffold.normal constructor

const MyScaffold.normal({
  1. Key? kye,
  2. ChildBuild<Widget>? appBar,
  3. required ChildBuild<Widget> body,
  4. ChildBuild<List<Widget>>? actions,
  5. String? title,
  6. ChildBuild<Widget>? drawer,
  7. bool drawerIsLeft = true,
  8. bool titleIsCenter = false,
  9. bool isMaterial = true,
  10. bool isShowTitle = true,
  11. bool isBottom = false,
  12. SafePadding? isSafeArea,
  13. Color? bgColor,
  14. Color? titleBackgroundColor,
  15. ChildBuild<Widget>? bottom,
  16. ChildBuild<Widget>? titleWidget,
  17. Widget? stateWidget,
  18. ChildBuild<Widget>? nextWidget,
  19. Brightness? brightness,
  20. Brightness? appBarBrightness,
  21. ThemeData? themeData,
  22. Color? defaultTextColor,
})

Implementation

const MyScaffold.normal({
  Key? kye,
  this.appBar,
  required this.body,
  this.actions,
  this.title,
  this.drawer,
  this.drawerIsLeft = true,
  this.titleIsCenter = false,
  this.isMaterial = true,
  this.isShowTitle = true,
  this.isBottom = false,
  this.isSafeArea,
  this.bgColor,
  this.titleBackgroundColor,
  this.bottom,
  this.titleWidget,
  this.stateWidget,
  this.nextWidget,
  this.brightness,
  this.appBarBrightness,
  this.themeData,
  this.defaultTextColor,
})  : this.immerse = false,
      this.backgroundWidget = null,
      super(key: kye);