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!;
}
}