FastScaffold constructor

const FastScaffold({
  1. Key? key,
  2. Size appBarHeightSize = _kAppBarHeightSize,
  3. bool isTitlePositionBelowAppBar = true,
  4. bool showAppBar = true,
  5. Color? appBarBackgroundColor,
  6. Widget? floatingActionButton,
  7. NavigationBar? bottomNavigationBar,
  8. Widget? closeButton,
  9. Widget? backButton,
  10. Color? titleColor,
  11. String? titleText,
  12. List<Widget>? actions,
  13. Widget? leading,
  14. Widget? child,
})

Implementation

const FastScaffold({
  Key? key,
  this.appBarHeightSize = _kAppBarHeightSize,
  this.isTitlePositionBelowAppBar = true,
  this.showAppBar = true,
  this.appBarBackgroundColor,
  this.floatingActionButton,
  this.bottomNavigationBar,
  this.closeButton,
  this.backButton,
  this.titleColor,
  this.titleText,
  this.actions,
  this.leading,
  this.child,
}) : super(key: key);