1.6.0 • Published 2 years ago

@moja.dam/react-native-wheel-of-fortune v1.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

react-native-wheel-of-fortune

Maintainability Download

Wheel of fortune component for React Native

React Native Wheel Of Fortune

Installation

Use the package manager npm and yarn to install react-native-wheel-of-fortune.

yarn add react-native-wheel-of-fortune
# or using npm
npm i react-native-wheel-of-fortune --save

Dependencies

WheelofFortune is dependent on react-native-svg and D3-shape plugins.

Import

import WheelOfFortune from 'react-native-wheel-of-fortune'

Properties

PropertyTypeDefaultDesc
rewards (required)Array-Set Rewards
winnerNumberrandom Set winner index
colorsArray Default ColorsSegment background colors
duration (ms)Number10000Completion time (ms)
getWinner (required) callback(value,index) -Winner value and index callback function
backgroundColorString#FFFFFF Wheel background color
borderWidthNumber2Wheel border width
borderColor String #FFFFFFWheel border color
textColorString #FFFFFFRewards text color
knobSizeNumber20Knoob size
knoobSourcePathknoob.png  Knoob source
playButton render()exampleRender method for tap to play button
innerRadiusNumber100Set inner radius size
innerRadiusNumber100Set inner radius size
textAngleStringhorizontalSet angle of reward text

Usage

const participants = [
  '%10',
  '%20',
  '%30',
  '%40',
  '%50',
  '%60',
  '%70',
  '%90',
  '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'),
      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.

TODO

  • Reset Wheel Functions

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

Contributors

Joaquin Beceiro

License

MIT