ScaffoldFastor constructor

ScaffoldFastor({
  1. Key? key,
  2. required Widget body,
  3. bool? putBodyInsideScroll = false,
  4. Color? backgroundColor,
  5. Widget? floatingActionButton,
  6. String? titleAppbar,
  7. PreferredSizeWidget? appBar,
  8. Widget? appBarCustom,
  9. Widget? widgetBackground,
  10. bool? isShowBackButtonAppBar,
  11. ScrollController? scrollController,
  12. GlobalKey<ScaffoldState>? keyDrawer,
  13. Drawer? drawer,
  14. DrawerCallback? onDrawerChanged,
  15. bool? makeStatusBarTransparent,
  16. FloatingActionButtonLocation? floatingActionButtonLocation,
  17. bool? shapeTransparent = false,
  18. Color? shapeTransparentColor,
})

Implementation

ScaffoldFastor({
  super.key,
  required this.body,
  this.putBodyInsideScroll = false ,
  this.backgroundColor,
  this.floatingActionButton,
  this.titleAppbar,
  this.appBar,
  this.appBarCustom,
  this.widgetBackground,
  this.isShowBackButtonAppBar,
  this.scrollController,
  this.keyDrawer,
  this.drawer,
  this.onDrawerChanged,
  this.makeStatusBarTransparent,
  this.floatingActionButtonLocation,

  //transparent
  this.shapeTransparent = false ,
  this.shapeTransparentColor,
}) {


}