SmartScaffold constructor

const SmartScaffold({
  1. Key? key,
  2. required Widget body,
  3. String titleText = '',
  4. bool useAppBar = true,
  5. bool automaticallyImplyLeading = true,
  6. List<Widget>? actions,
  7. TextStyle? titleTextStyle,
  8. Widget? flexibleSpace,
  9. bool? resizeToAvoidBottomInset,
  10. EdgeInsets? padding,
  11. Widget? leading,
  12. bool? centerTitle,
  13. Widget? bottomNavigationBar,
  14. IconThemeData? iconTheme,
  15. Widget? title,
  16. double? toolbarHeight,
  17. PreferredSizeWidget? appBar,
  18. PreferredSizeWidget? bottom,
})

Implementation

const SmartScaffold({
  Key? key,
  required this.body,
  this.titleText = '',
  this.useAppBar = true,
  this.automaticallyImplyLeading = true,
  this.actions,
  this.titleTextStyle,
  this.flexibleSpace,
  this.resizeToAvoidBottomInset,
  this.padding,
  this.leading,
  this.centerTitle,
  this.bottomNavigationBar,
  this.iconTheme,
  this.title,
  this.toolbarHeight,
  this.appBar,
  this.bottom
}) : super(key: key);