
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
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 6,542 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 1 open source maintainer 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.