corymsmith / react-native-icons

Quick and easy icons in React Native
MIT License
1.14k stars 141 forks source link

No Icon font named '(null)' #122

Closed jneumann closed 8 years ago

jneumann commented 8 years ago

When I run the example project included with the repository everything works fine, but when I try to use the library with my own projects, I keep getting No Icon font named '(null)'. I believe that it is an issue with how the font files are being loaded, but I can't be 100% sure on that.

screen shot 2015-10-21 at 9 00 30 am
corymsmith commented 8 years ago

Can you post the code you're trying to use? I think its an issue with how its being declared.

Thanks,

Cory Smith http://ca.linkedin.com/in/corysmith/ http:/twitter.com/smixx http://twitter.com/smixx

On Wed, Oct 21, 2015 at 8:11 AM, jneumann notifications@github.com wrote:

When I run the example project included with the repository everything works fine, but when I try to use the library with my own projects, I keep getting No Icon font named '(null)'. I believe that it is an issue with how the font files are being loaded, but I can't be 100% sure on that. [image: screen shot 2015-10-21 at 9 00 30 am] https://cloud.githubusercontent.com/assets/4145595/10639039/a2f48d76-77d3-11e5-865d-f01d3ff831a6.png

— Reply to this email directly or view it on GitHub https://github.com/corymsmith/react-native-icons/issues/122.

jneumann commented 8 years ago

https://gist.github.com/jneumann/f9c483b9fccc4d9dd44e

corymsmith commented 8 years ago

You're missing:

iconName={'ion|ios-paper-outline'} iconSize={32}

You can also specify the following if the icon is different when selected vs. just being tinted a different color:

selectedIconName={'ion|ios-paper'}

Thanks,

Cory Smith http://ca.linkedin.com/in/corysmith/ http:/twitter.com/smixx http://twitter.com/smixx

On Wed, Oct 21, 2015 at 9:21 AM, jneumann notifications@github.com wrote:

https://gist.github.com/jneumann/f9c483b9fccc4d9dd44e

— Reply to this email directly or view it on GitHub https://github.com/corymsmith/react-native-icons/issues/122#issuecomment-149930190 .

corymsmith commented 8 years ago

@jneumann any luck?

jneumann commented 8 years ago

That fixed it for me, thank you for your help!