getAppTextTheme function
Returns a text theme for a app font. Returns a TextTheme.
Implementation
TextTheme getAppTextTheme(TextStyle appThemeFont, TextTheme textTheme) {
return TextTheme(
displayLarge: appThemeFont.merge(textTheme.displayLarge),
displayMedium: appThemeFont.merge(textTheme.displayMedium),
displaySmall: appThemeFont.merge(textTheme.displaySmall),
headlineLarge: appThemeFont.merge(textTheme.headlineLarge),
headlineMedium: appThemeFont.merge(textTheme.headlineMedium),
headlineSmall: appThemeFont.merge(textTheme.headlineSmall),
titleLarge: appThemeFont.merge(textTheme.titleLarge),
titleMedium: appThemeFont.merge(textTheme.titleMedium),
titleSmall: appThemeFont.merge(textTheme.titleSmall),
bodyLarge: appThemeFont.merge(textTheme.bodyLarge),
bodyMedium: appThemeFont.merge(textTheme.bodyMedium),
bodySmall: appThemeFont.merge(textTheme.bodySmall),
labelLarge: appThemeFont.merge(textTheme.labelLarge),
labelMedium: appThemeFont.merge(textTheme.labelMedium),
labelSmall: appThemeFont.merge(textTheme.labelSmall),
);
}