XAppBar constructor

const XAppBar({
  1. Key? key,
  2. String? title,
  3. Widget? child,
  4. TextStyle? titleTextStyle,
  5. VoidCallback? onTapBack,
  6. List<Widget> actions = const [],
  7. bool isTitleCenter = true,
  8. double? toolbarHeight,
  9. Color? backgroundColor,
  10. Widget? backButton,
})

Implementation

const XAppBar({
  super.key,
  this.title,
  this.child,
  this.titleTextStyle,
  this.onTapBack,
  this.actions = const [],
  this.isTitleCenter = true,
  this.toolbarHeight,
  this.backgroundColor,
  this.backButton,
});