Ruban Moses
Ruban Moses

Reputation: 29

Fonts in Flutter web does not work as expected

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

Answers (1)

Hossein Asadi
Hossein Asadi

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

enter link description here

Upvotes: 4

Related Questions