Package Exports
- react-native-rating-star
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-rating-star) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
React Native Star Rating Component
A React Native component for generating and displaying interactive star ratings. Compatible with both iOS and Android.
#Installation
npm install react-native-rating-star --save
#Usage
import StarRating from 'react-native-rating-star';
class StarRaingDemo extends Component {
render() {
return (
<View style={styles.container}>
<Text style={styles.welcome}>
StarRating not set starSize and interitemSpacing.
</Text>
<StarRating
maxStars={5}
rating={1}
selectStar={require('./select_star.png')}
unSelectStar={require('./unselect_star.png')}
valueChanged={this._valueChanged}
/>
<Text style={styles.welcome}>
StarRating set starSize.
</Text>
<StarRating
maxStars={5}
rating={2}
selectStar={require('./select_star.png')}
unSelectStar={require('./unselect_star.png')}
valueChanged={this._valueChanged}
starSize={25}
/>
<Text style={styles.welcome}>
StarRating set starSize and interitemSpacing
</Text>
<StarRating
maxStars={5}
rating={3}
selectStar={require('./select_star.png')}
unSelectStar={require('./unselect_star.png')}
valueChanged={this._valueChanged}
starSize={50}
interitemSpacing={20}
/>
</View>
);
}
_valueChanged(rating) {
console.log(rating);
}
}
