Member-only story
Google Fonts, The Right Way
There are some secret tricks to maximizing use of Google Fonts for your Flutter Application, let me show you how.
The Google Fonts Plugin
he Google Fonts Plugin is here:
And you add two items to the pubspec:
assets: google_fonts/
e want to have a set of fonts there to fully integrate with Goldens, as Goldens does not use the internet as it’s disabled for unit tests! You should know that eBay has pioneered a way to use their Golden Toolkit to fast prototype Flutter App screens, and this is one of the integrations you need for that approach.
Also, then you download the fonts also make sure to include the license.
Then the dependency:
dependencies: google_fonts: ^2.1.0
Now, we are ready to implement and use it.