Change App Font

To change app font. Go to the app_theme.dart file in the constants folder.

In the app_theme.dart file, you can search for occurrence of this line below:

fontFamily: GoogleFonts.oswald().fontFamily,

Then you can change the fontfamily to that of your choice. For example if you want to change to poppins font, below is want the line will now look like:

fontFamily: GoogleFonts.poppins().fontFamily,

This can be done in all 3 apps (driver, customer & vendor app)

Last updated