GScaffold constructor

const GScaffold({
  1. Key? key,
  2. Widget? appTitleBar,
  3. Widget? appBar,
  4. Widget? systemBar,
  5. required Widget content,
  6. Widget? drawer,
  7. Color? backgroundColor,
  8. Widget? background,
  9. GDrawerState drawerState = GDrawerState.open,
})

Implementation

const GScaffold({
  Key? key,
  this.appTitleBar,
  this.appBar,
  this.systemBar,
  required this.content,
  this.drawer,
  this.backgroundColor,
  this.background,
  this.drawerState = GDrawerState.open,
}) : super(key: key);