getSecondaryButtonTextStyle method

TextStyle getSecondaryButtonTextStyle(
  1. BuildContext context
)

Implementation

TextStyle getSecondaryButtonTextStyle(BuildContext context) {
  return Theme.of(context).textTheme.labelLarge!.copyWith(
        color: getTertiaryLabelColor(context),
        fontSize: kFastFontSize14,
      );
}