diff --git a/lib/config/themes.dart b/lib/config/themes.dart index d34083c..60f2432 100644 --- a/lib/config/themes.dart +++ b/lib/config/themes.dart @@ -1,5 +1,6 @@ import 'package:flutter/material.dart'; import 'theme_type.dart'; +import 'package:google_fonts/google_fonts.dart'; class AppThemes { static ThemeData getLightTheme(ThemeType type) { @@ -25,9 +26,10 @@ class AppThemes { ); return ThemeData.from( - colorScheme: colorScheme, - useMaterial3: true, // Recommended for modern Flutter apps - ).copyWith( + colorScheme: colorScheme, + useMaterial3: true, // Recommended for modern Flutter apps + textTheme: GoogleFonts.rubikTextTheme()) + .copyWith( scaffoldBackgroundColor: Colors.white, bottomNavigationBarTheme: BottomNavigationBarThemeData( backgroundColor: colorScheme.surface,