display static method
Display Texts
Implementation
static TextStyle display(BuildContext context, TextFontSize size) {
final theme = Theme.of(context).textTheme;
switch (size) {
case TextFontSize.LARGE:
return theme.displayLarge!;
case TextFontSize.MEDIUM:
return theme.displayMedium!;
case TextFontSize.SMALL:
return theme.displaySmall!;
}
}