bodyStyle function
TextStyle
bodyStyle({
- double fontSize = 14.0,
- Color? color,
- FontWeight fontWeight = FontWeight.w300,
- double? height,
Implementation
TextStyle bodyStyle({
double fontSize = 14.0,
Color? color,
FontWeight fontWeight = FontWeight.w300, // Thin/Light modern aesthetic
double? height,
}) {
return GoogleFonts.inter(
fontSize: fontSize,
color: color ?? textDark,
fontWeight: fontWeight,
height: height,
letterSpacing: -0.2,
decoration: TextDecoration.none,
);
}