Hi, I build a website with Compose Kotlin WASMJS: ...
# compose
p
Hi, I build a website with Compose Kotlin WASMJS: https://unit-mesh.github.io/auto-dev/ . For now, the UTF8 not working , for example emoji, Chinese/Korean/Japanese not working. How to support this case?
w
The default font doesn't support these, you need to manually load font files with support. Note that supporting every character can be expensive, both in cost of the font file sizes and the time needed to load them. Ideally you just know which support you need and craft exactly a font containing those characters. But if you support generic user input then it's hard.
p
@Winson Chiu Thanks, but for now, I almost done in JVM/Android/iOS side spike... Any demo to use font or better way like this?
p
Thanks, I will try it