appTextStyle function
TextStyle
appTextStyle({
- required double fontSize,
- required FontWeight fontWeight,
- required double lineHeight,
- Color? color,
Implementation
TextStyle appTextStyle({
required double fontSize,
required FontWeight fontWeight,
required double lineHeight,
Color? color,
}) {
return TextStyle(
fontSize: fontSize,
fontWeight: fontWeight,
color: color,
height: lineHeight / fontSize,
// letterSpacing: 1.5,
);
}