
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@fidme/react-native-wheel-of-fortune
Advanced tools
Forked from suusofttruongnv/react-native-wheel-of-fortune We did some modifications to fit our needs.
Wheel of fortune component for React Native
Use the package manager npm and yarn to install react-native-wheel-of-fortune.
yarn add @fidme/react-native-wheel-of-fortune
# or using npm
npm i @fidme/react-native-wheel-of-fortune --save
WheelofFortune is dependent on react-native-svg and D3-shape plugins.
import WheelOfFortune from "@fidme/react-native-wheel-of-fortune";
Property | Type | Default | Desc |
---|---|---|---|
rewards (required) | Array | - | Set Rewards |
winner | Number | random | Set winner index |
colors | Array | Default Colors | Segment background colors |
duration (ms) | Number | 10000 | Completion time (ms) |
getWinner (required) | callback(value,index) | - | Winner value and index callback function |
backgroundColor | String | #FFFFFF | Wheel background color |
borderWidth | Number | 2 | Wheel border width |
borderColor | String | #FFFFFF | Wheel border color |
textColor | String | #FFFFFF | Rewards text color |
knobSize | Number | 20 | Knoob size |
knoobSource | Path | knoob.png | Knoob source |
playButton | render() | example | Render method for tap to play button |
innerRadius | Number | 100 | Set inner radius size |
innerRadius | Number | 100 | Set inner radius size |
textAngle | String | horizontal | Set angle of reward text |
typeRewards | [String] | require | Set type rewards |
sizeIconReward | Number | 30 | Icon reward size |
iconRewards | [Path] | [knoob.png] | Icon reward source |
const participants = [
'%10',
'%20',
'%30',
'%40',
'%50',
'%60',
'%70',
'%90',
'FREE',
];
const typeRewards = [
'Point',
'Gold',
'Cash',
'Point',
'Gold',
'Cash',
'Point',
'Gold',
'FREE',
];
const wheelOptions = {
rewards: participants,
knobSize: 50,
borderWidth: 5,
borderColor: '#000',
innerRadius: 50,
duration: 4000,
backgroundColor: 'transparent',
textAngle: 'horizontal',
knobSource: require('./assets/images/knoob.png'),
typeRewards: typeRewards,
sizeIconReward: 40,
iconRewards: iconRewards,
getWinner: (value, index) => {
this.setState({winnerValue: value, winnerIndex: index});
},
onRef: ref => (this.child = ref),
};
<WheelOfFortune
options={wheelOptions}
/>
<Button title="Press me" onPress={ () => { this.child._onPress() } } />
For more information and test go to /Example folder.
FAQs
React Native Wheel Of Fortune Component.
The npm package @fidme/react-native-wheel-of-fortune receives a total of 9 weekly downloads. As such, @fidme/react-native-wheel-of-fortune popularity was classified as not popular.
We found that @fidme/react-native-wheel-of-fortune demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.