style property

  1. @override
WxAnchorStyle get style
override

The WxAnchorStyle to be applied to the anchor widget

Implementation

@override
get style => WxDrivenAnchorStyle(
      textStyle: appTheme.textTheme.labelLarge,
      overlayShape: const RoundedRectangleBorder(),
      overlayOpacity: 0,
      focusedStyle: const WxAnchorStyle(overlayOpacity: 0.15),
      hoveredStyle: const WxAnchorStyle(overlayOpacity: 0.05),
      pressedStyle: const WxAnchorStyle(overlayOpacity: 0.1),
    ).merge(super.style);