1.0.5 • Published 4 years ago

react-native-switch-pro v1.0.5

Weekly downloads
5,649
License
MIT
Repository
github
Last release
4 years ago

react-native-switch-pro

version downloads downloads
A universal switch for android and iOS, it could be the best switch for react-native on Github.

Preview

Feature

  • Almost perfect switch on react-native
  • Have a good performance on both iOS and Android
  • Add gesture with PanResponder  
  • More animations to follow iOS native performance
  • Support async and sync event
  • Support bidirectional data binding
  • Clear code style

Install

npm install react-native-switch-pro --save

Usage

  • Sync

import Switch from 'react-native-switch-pro'
...
  render() {
    return (
      <View style={styles.container}>
        <Switch onSyncPress={value => {...}}/>
      </View>
    )
  }
...
  • Async

...
  render() {
    return (
      <View style={styles.container}>
        <Switch onAsyncPress={(callback) => {
          You can call your async module and just invoke callback(true) when succeed,  
          callback(false) when fail.
        }}/>
      </View>
    )
  }
...

Props

NameDescriptionDefaultType
widthwidth of switch40number
heightheight of switch21number
valuestate of switch which can be used to bidirectional bindingundefinedbool
disabledwhether switch is clickablefalsebool
circleColorActivecolor for circle handler of switch when it is onwhitestring
circleColorInactivecolor for circle handler of switch when it is offwhitestring
stylestyles that will be applied for switch containerundefinedstyle
circleStylestyles that will be applied for the circleundefinedstyle
backgroundActivecolor of switch when it is ongreenstring
backgroundInactivecolor of switch when it is off'#ddd'string
onSyncPresscallback when switch is clicked() => nullfunc
onAsyncPresshas a callback with result of async(value, callback) => {callback(true)}func

Notice

  • You'd better not use onSyncPress and onAsyncPress together or else, only onSyncPress will be invoked.
  • value is used with bidirectional binding which could be redux, state and so on.
    In onAsyncPress, you should write like following (with state):

    ```javascript
    <Switch
      value={this.state.value}
      onAsyncPress={(callback) => {
        callback(false or true, value => this.setState({value}))
     }}
    />
    ```
    `value => this.setState({value})` will only be invoked when result is true.

License

MIT

Maybe I need your help

It's my pleasure to develop the library for you.
Now I'm looking for a new and nice job and if you can help me, just click here.

1.0.5

4 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.2-beta

5 years ago

1.0.1-beta

6 years ago

1.0.0-beta

6 years ago

0.4.11

6 years ago

0.4.10

6 years ago

0.4.9

6 years ago

0.4.8

6 years ago

0.4.7

6 years ago

0.4.6

7 years ago

0.4.5

7 years ago

0.4.4

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago