XAppBar class

A highly configurable wrapper around Flutter's built-in AppBar, providing extended flexibility for common UI requirements.

Features:

  • Text-based title via title or full custom widget using child.
  • Custom back button via backButton or default Material back button.
  • Custom actions via actions.
  • Custom back-navigation handler via onTapBack.
  • Adjustable toolbar height via toolbarHeight.
  • Configurable background color via backgroundColor.
  • Auto system overlay style based on background luminance.

Title precedence:

Back button behavior:

  • If backButton is provided, it becomes the leading widget.
  • If onTapBack is provided, it is executed when back button is pressed.
  • If neither is provided, default back button calls Navigator.pop().

Implements PreferredSizeWidget for use in Scaffold.appBar.

Inheritance
Implemented types

Constructors

XAppBar({Key? key, String? title, Widget? child, TextStyle? titleTextStyle, VoidCallback? onTapBack, List<Widget> actions = const [], bool isTitleCenter = true, double? toolbarHeight, Color? backgroundColor, Widget? backButton})
const

Properties

actions List<Widget>
final
backButton Widget?
final
backgroundColor Color?
final
child Widget?
final
hashCode int
The hash code for this object.
no setterinherited
isTitleCenter bool
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
onTapBack VoidCallback?
final
preferredSize Size
The size this widget would prefer if it were otherwise unconstrained.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String?
final
titleTextStyle TextStyle?
final
toolbarHeight double?
final

Methods

build(BuildContext context) Widget
Describes the part of the user interface represented by this widget.
override
createElement() StatelessElement
Creates a StatelessElement to manage this widget's location in the tree.
inherited
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug, int wrapWidth = 65}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited