FWAppBar constructor

const FWAppBar({
  1. Key? key,
  2. String title = "",
  3. bool? centerTitle = false,
  4. Color? backgroundColor,
  5. double? elevation = 5.0,
  6. Gradient? gradient,
  7. Widget? flexibleSpace,
  8. Widget? leading,
  9. double? leadingWidth,
  10. Color? shadowColor,
  11. PreferredSizeWidget? bottom,
  12. double bottomOpacity = 1.0,
  13. List<Widget>? actions,
  14. bool automaticallyImplyLeading = false,
  15. TextStyle? titleTextStyle,
})

Implementation

const FWAppBar({
  Key? key,
  this.title = "",
  this.centerTitle = false,
  this.backgroundColor,
  this.elevation = 5.0,
  this.gradient,
  this.flexibleSpace,
  this.leading,
  this.leadingWidth,
  this.shadowColor,
  this.bottom,
  this.bottomOpacity = 1.0,
  this.actions,
  this.automaticallyImplyLeading = false,
  this.titleTextStyle,
}) : super(key: key);