2

I'm trying to use Ionicons with Android and NativeScript. I've included the ionicon.ttf file and my set font-family: "Ionicons". It's working on iOS, but not Android.

Burke Holland
  • 2,325
  • 1
  • 22
  • 33

1 Answers1

5

Android registers font names differently than iOS. For Ionicons, the font name is ionicons.ttf, so the correct CSS is font-family: "Ionicons", ionicons.

Burke Holland
  • 2,325
  • 1
  • 22
  • 33