display static method
TextStyle
display({
- FontWeight fontWeight = FontWeight.bold,
- Color? color,
- bool allowFontScaling = false,
Display text style (very large)
Implementation
static TextStyle display({
FontWeight fontWeight = FontWeight.bold,
Color? color,
bool allowFontScaling = false,
}) {
return style(
fontSize: ScreenUtil.instance.isPhone ? 32 : 48,
fontWeight: fontWeight,
color: color,
allowFontScaling: allowFontScaling,
);
}