CustomScaffold constructor

CustomScaffold({
  1. Key? key,
  2. required Widget child,
  3. required AppBar appBar,
  4. required Widget? bottomNavigationBar,
  5. Color? backgroundColor,
  6. Widget? floatingActionButton,
  7. FloatingActionButtonLocation? floatingActionButtonLocation,
  8. bool extendBody = false,
})

Implementation

CustomScaffold({
  Key? key,
  required this.child,
  required this.appBar,
  required this.bottomNavigationBar,
  this.backgroundColor,
  this.floatingActionButton,
  this.floatingActionButtonLocation,
  this.extendBody = false,
}) : super(key: key);