react-native-easy-rating
A React Native component for rating view. Compatible with both iOS and Android.
####Tested with react-native 0.27.1
Installation
npm install react-native-easy-rating --save
Usage
Props
Example
import Rating from 'react-native-easy-rating' ... <Rating rating={1} max={5} iconWidth={24} iconHeight={24} iconSelected={require('../../img/icon_star_selected.png')} iconUnselected={require('../../img/icon_star_unselected.png')} onRate={(rating) => this.setState({rating: rating})}/>