buttonTextStyle static method

TextStyle buttonTextStyle(
  1. BuildContext context,
  2. Color? color
)

Implementation

static TextStyle buttonTextStyle(BuildContext context, Color? color) {
  return TextStyle(
    fontFamily: 'Poppins',
    package: 'shared_component',
    fontSize: FontSizes.small,
    color: color,
  );
}