corymsmith / react-native-icons

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

Question: possible to add a css class for spinner? #46

Closed steve-ng closed 9 years ago

steve-ng commented 9 years ago

Inside font-awesome, in order to make it spin, we can add a css class fa-spin.

possible in react-native-icons?

http://fortawesome.github.io/Font-Awesome/examples/#animated

tikhonbelousko commented 9 years ago

React native doesn't have CSS classes, it uses StyleSheet objects instead which doesn't have animations. Property for spinning can be added though. Noteworthy, you can implement spinning animation on your own using TweenState and transform styles.

Honestly, I would use standard iOS indicator.

corymsmith commented 9 years ago

@steve-ng Exactly what @DaZzz said :) You can use animations to spin any component so that would work for these icons / images as well.