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.
Best Answer
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Looks like that one isn't supported, these 2 work:
myLabel.text = "→ ➡";
Or, you could try FitFont.
https://www.npmjs.com/package/fitfont
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Looks like that one isn't supported, these 2 work:
myLabel.text = "→ ➡";
Or, you could try FitFont.
https://www.npmjs.com/package/fitfont