Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/yonfong/react-native-starRating

react native starRatin component
https://github.com/yonfong/react-native-starRating

Last synced: about 1 month ago
JSON representation

react native starRatin component

Lists

README

        

# react-native-starRating
react native starRatin component

# Installation

npm install react-native-starrating --save

# Usage

Install the package via npm install react-native-starrating --save. Then import it in your JavaScript file via import StarRating from 'react-native-starrating'. Check out an example usage below:

```js
import StarRating from 'react-native-starrating';

class ExampleComponent extends React.Component{
onStarRatingPress(value) {
console.log('Rated ' + value + ' stars!');
}
render() {
return (
this.onStarRatingPress(value)}
/>
);
}
}
```