inHeaderBar method

  1. @override
Widget inHeaderBar(
  1. BuildContext context
)
override

Builds the widget when the widget is in the header bar.

Implementation

@override
Widget inHeaderBar(BuildContext context) {
  return ArnaButton(
    icon: icon,
    onPressed: onPressed,
    onLongPress: onLongPress,
    tooltipMessage: label,
    buttonType: buttonType,
    isFocusable: isFocusable,
    autofocus: autofocus,
    accentColor: accentColor,
    cursor: cursor,
    semanticLabel: semanticLabel,
    enableFeedback: enableFeedback,
  );
}