Reputation: 29
As default the flutter web should support the fonts specified in pubspec.yaml.. But the fonts work perfectly fine for andriod mobile application but in web the font looks different.. sans-serif font is default font in flutter web even if i have specified other type in my ThemeData.. If some one can provide latest guidelines to add font in flutter web it will be helpful.. Thanks in advance
Upvotes: 2
Views: 2678
Reputation: 836
I had like this issue and fixed with below commands
flutter run -d chrome --web-renderer canvaskit
flutter build web --web-renderer canvaskit
you can see below link for better understand
Upvotes: 4