tabStyle static method

TextStyle tabStyle({
  1. Color? textColor,
})

Implementation

static TextStyle tabStyle({Color? textColor}) {
  return TextStyle(
    fontFamily: 'Poppins',
    package: 'shared_component',
    fontSize: 14.0,
    color: textColor,
  );
}