ReadyAppBar constructor

const ReadyAppBar({
  1. Key? key,
  2. String? titleText,
  3. Widget? titleWidget,
  4. String? subtitle,
  5. Widget? leading,
  6. List<Widget>? actions,
  7. bool centerTitle = true,
  8. double elevation = 0,
  9. Color? backgroundColor,
  10. TextStyle? titleTextStyle,
  11. TextStyle? subtitleTextStyle,
  12. PreferredSizeWidget? bottom,
  13. IconThemeData? iconTheme,
  14. Color? foregroundColor,
  15. bool automaticallyImplyLeading = false,
  16. double? titleSpacing,
  17. ShapeBorder? shape,
  18. Widget? flexibleSpace,
})

Creates a ReadyAppBar widget.

Implementation

const ReadyAppBar({
  super.key,
  this.titleText,
  this.titleWidget,
  this.subtitle,
  this.leading,
  this.actions,
  this.centerTitle = true,
  this.elevation = 0,
  this.backgroundColor,
  this.titleTextStyle,
  this.subtitleTextStyle,
  this.bottom,
  this.iconTheme,
  this.foregroundColor,
  this.automaticallyImplyLeading = false,
  this.titleSpacing,
  this.shape,
  this.flexibleSpace,
});