style property

TextStyle get style

Returns the text style for the button label based on the state.

Implementation

TextStyle get style => VPack.instance.theme.textStyle.copyWith(
      fontSize: size.fontSize,
      color: switch (state) {
        VButtonState.LOADING => Colors.transparent,
        _ => _getColorByType,
      },
    );