So I downloaded the zip: https://github.com/hfg-gmuend/openmoji, opened it up, opened the font folder, and dragged the OpenMoji-Color.ttf file into my Xcode project, but then I realized it's not really a "font" that modifies existing text, so how exactly do I put the emojis inside of strings, or Images or something like that?
Normally, I'd do something like:
Text("")
.font(Font.custom("OpenMoji-Color", size: 20))
Alternatively, I was hoping to do something like:
Image("") //somehow modify it to be in the correct OpenMoji style
Does anyone know how to do this?