Anyone used react-native-vector-icons with reagent? Iām trying to get it working with Krell and struggling at the moment.
I'm using
(def ionicon (js/require "react-native-vector-icons/Ionicons"))
(def icon (r/adapt-react-class (.-default ionicon)))
Then [icon {:name "rocket"}]
results in "Unrecognized font family 'Ionicons' "
@admarrs You still need to add the fonts to your Info.plist in XCode, possibly a similar thing in Android
I use rnvi with reagent, so it definitely works.
@joshmiller thanks, you were right. Realised I hadn't added the font in Info.plist.