Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
react-native-star-rating-widget
Advanced tools
A customizable, animated star rating component for React Native. Compatible with iOS, Android and Web. Written in Typescript.
npm install react-native-star-rating-widget --save
or yarn add react-native-star-rating-widget
This package exports an
StarRating
componentimport StarRating from 'react-native-star-rating-widget';
const Example = () => {
const [rating, setRating] = useState(0);
return (
<StarRating
rating={rating}
onChange={setRating}
/>
);
};
StarRatingDisplay
componentimport { StarRatingDisplay } from 'react-native-star-rating-widget';
const Example = () => {
return (
<StarRatingDisplay
rating={4.5}
/>
);
};
See example/src for more examples.
StarRating
PropsName | Type | Default | Description |
---|---|---|---|
rating | number | REQUIRED | Rating Value. Should be between 0 and maxStars |
onChange | (rating: number) => void | REQUIRED | called when rating changes |
maxStars | number | 5 | number of stars |
starSize | number | 32 | star size |
color | string | "#fdd835" | star color |
emptyColor | string | same as color | empty star color |
style | object | undefined | optional style |
starStyle | object | undefined | optional star style |
enableHalfStar | boolean | true | enable or disable display of half stars |
enableSwiping | boolean | true | enable or disable swiping |
onRatingStart | (rating: number) => void | undefined | called when the interaction starts, before onChange |
onRatingEnd | (rating: number) => void | undefined | called when the interaction starts, after onChange |
animationConfig | see AnimationConfig | see AnimationConfig | animation configuration object |
StarIconComponent | (props: { index: number; size: number; color: string; type: "full" | "half" | "empty"; }) => JSX.Element | StarIcon | Icon component |
accessibilityLabel | string | star rating. %value% stars. use custom actions to set rating. | The label used on the star component |
accessabilityIncrementLabel | string | increment | The label for the increment action |
accessabilityDecrementLabel | string | decrement | The label for the decrement action. |
accessabilityActivateLabel | string | activate (default) | The label for the activate action. |
accessibilityAdjustmentLabel | string | %value% stars | The label that is announced after adjustment action |
StarRatingDisplay
PropsThe StarRatingDisplay
component accepts mostly the same props as StarRating
except those that are interaction related props such as onChange
, enableSwiping
, onRatingStart
etc.
Name | Type | Default | Description |
---|---|---|---|
scale | number | 1.2 | star animation scale value |
duration | number | 300 | animation duration |
delay | number | 300 | animation delay when interaction has ended |
easing | (number) => number | Easing.elastic(2) | animation easing function |
FAQs
A star rating widget for react native
The npm package react-native-star-rating-widget receives a total of 8,356 weekly downloads. As such, react-native-star-rating-widget popularity was classified as popular.
We found that react-native-star-rating-widget demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.