UPDATE:
I didn't figure out how to explicitly set a fallback font, but I did fix my usecase. Turns out my API wasn't explicitly setting "charset=utf-8" in the content-type header. Once I added that, FF was able to decode the text correctly and correctly rendered the japanese text.
This was tough to track down because my other REST clients were automatically inferring utf-8, so the problem was invisible if you didn't know what to look for.
--
Hey all,
I'm building an app in FF that predominantly shows text in English but has some Japanese characters. I'm having trouble finding a title font I like that natively supports Japanese glyphs. The text I'm rendering is coming from a 3rd party API so I can't know in advance if it will include japanese or not.
How do you set a fallback font using Flutterflow? I see this is doable in Flutter and I've done it in CSS when building websites in the past.