XAppBar constructor

XAppBar({
  1. bool? centerTitle,
  2. double? height,
  3. String? title,
  4. Widget? title_Widget,
  5. Color? title_color,
  6. double? title_fontSize,
  7. double? title_letterSpacing,
  8. TextStyle? title_textStyle,
  9. Color? backGroundColor,
  10. String? leading_Label,
  11. TextStyle? leading_LabelTextStyle,
  12. Widget? leading_Widget,
  13. double? leading_Width,
  14. List<Widget>? actions,
})

Implementation

XAppBar({
  this.centerTitle,
  this.height,
  this.title,
  this.title_Widget,
  this.title_color,
  this.title_fontSize,
  this.title_letterSpacing,
  this.title_textStyle,
  this.backGroundColor,
  this.leading_Label,
  this.leading_LabelTextStyle,
  this.leading_Widget,
  this.leading_Width,
  this.actions,
});