CScaffold constructor

CScaffold({
  1. Key? key,
  2. required Widget body,
  3. Widget? appBar,
  4. bool? autoLostFocus,
  5. Color? backgroundColor,
  6. Widget? bottomNavigationBar,
  7. bool extendBodyBehindAppBar = false,
  8. bool safeArea = true,
  9. bool resizeToAvoidBottomInset = true,
  10. Widget? floatingActionButton,
  11. FloatingActionButtonLocation? floatingActionButtonLocation,
  12. FloatingActionButtonAnimator? floatingActionButtonAnimator,
})

Implementation

CScaffold(
    {super.key,
    required this.body,
    this.appBar,
    this.autoLostFocus,
    super.backgroundColor,
    this.bottomNavigationBar,
    this.extendBodyBehindAppBar = false,
    this.safeArea = true,
    this.resizeToAvoidBottomInset = true,
    this.floatingActionButton,
    this.floatingActionButtonLocation,
    this.floatingActionButtonAnimator,});