05-11-2019 17:51
05-11-2019 17:51
Hello There,
I am trying to display the dart arrow ⮝ as Unicode:
updatedLabel.text = "\u2b9f";
but all its displaying on my Fitbit ionic screen is a question mark ?. how can I go about displaying the dart arrow symbol. Any suggestions? thanks in advance
best regards
SNK
Answered! Go to the Best Answer.
05-16-2019 11:02
05-16-2019 11:02
Looks like that one isn't supported, these 2 work:
myLabel.text = "→ ➡";
Or, you could try FitFont.
https://www.npmjs.com/package/fitfont
05-16-2019 11:02
05-16-2019 11:02
Looks like that one isn't supported, these 2 work:
myLabel.text = "→ ➡";
Or, you could try FitFont.
https://www.npmjs.com/package/fitfont
05-16-2019 14:22
05-16-2019 14:22
thank you, this will have to do for now