Coder Social home page Coder Social logo

rinderschwein / react-native-wheel-of-fortune Goto Github PK

View Code? Open in Web Editor NEW

This project forked from eftalyurtseven/react-native-wheel-of-fortune

0.0 0.0 0.0 4.37 MB

React Native Wheel of Fortune Plugin

JavaScript 55.45% Java 10.12% Objective-C 16.11% Ruby 10.94% Starlark 7.39%

react-native-wheel-of-fortune's Introduction

react-native-wheel-of-fortune

Maintainability Download

Wheel of fortune component for React Native

React Native Wheel Of Fortune

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

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

Usage

const rewards = [1,2,3,4,5,6,7,8,9,10]

<WheelOfFortune
    onRef={ref => (this.child = ref)} 
    rewards={ rewards }
    knobSize={20}
    borderWidth={3}
    borderColor={"#FFF"}
    winner={3}
    innerRadius={50}
    backgroundColor={"#c0392b"}
    getWinner={(value, index) => this.setState({ winnerValue: value, winnerIndex: index })}
/>
<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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.