cljsrn

https://github.com/drapanjanas/re-natal | https://github.com/drapanjanas/re-natal/wiki/FAQ | https://github.com/condense/mercury-app/wiki | https://github.com/seantempesta/expo-cljs-template/ https://www.npmjs.com/package/create-expo-cljs-app
admarrs 2020-09-25T14:23:58.002300Z

Anyone used react-native-vector-icons with reagent? Iā€™m trying to get it working with Krell and struggling at the moment.

admarrs 2020-09-25T14:36:04.002800Z

I'm using

admarrs 2020-09-25T14:36:32.003Z

(def ionicon (js/require "react-native-vector-icons/Ionicons")) (def icon (r/adapt-react-class (.-default ionicon)))

admarrs 2020-09-25T14:39:31.004200Z

Then [icon {:name "rocket"}] results in "Unrecognized font family 'Ionicons' "

joshmiller 2020-09-25T15:13:22.004900Z

@admarrs You still need to add the fonts to your Info.plist in XCode, possibly a similar thing in Android

joshmiller 2020-09-25T15:15:36.005200Z

I use rnvi with reagent, so it definitely works.

admarrs 2020-09-25T16:22:34.006300Z

@joshmiller thanks, you were right. Realised I hadn't added the font in Info.plist.

šŸ‘ 1