Home > Software engineering >  Why does Flutter show "?" for unrecognizable characters?
Why does Flutter show "?" for unrecognizable characters?

Time:10-12

I'm trying to display text using the Text widget but it's not displaying properly. It shows the "?" for characters it cannot read. How can I fix this?

This is the result I want. enter image description here And this is the error. enter image description here

CodePudding user response:

It is generally due to the special characters not being supported by the charset / font. Hence, rendering as questions marks. Try some other font that has all those characters / glyphs.

CodePudding user response:

That's should be using the default font for your app. If you see that is not working, you can always use a custom font that has "your_text".

  • Related