Reputation: 13
I have flutter web application and there almost 25+ fonts need to be used , all font folder size more than 35mb so please suggest me best way to implement all font with consuming memory
Upvotes: 0
Views: 1315
Reputation: 489
you can user google font package if those fonts are available in google fonts.
if you are trying to use icons as a fonts like font awesome or other custom font libraries download those libraries as SVG and discard unused icons then use IcoMoon to generate custom font. using that you can also download dart font mappings to use in your app IcoMoon
Upvotes: 1