react-native-bpk-component-switch
v4.0.1
Published
Backpack React Native switch component.
Downloads
39
Maintainers
Keywords
Readme
react-native-bpk-component-switch
Backpack React Native switch component.
Installation
npm install react-native-bpk-component-switch --save-dev
Usage
import React, { Component } from 'react';
import { View, StyleSheet, Text } from 'react-native';
import BpkSwitch from 'react-native-bpk-component-switch';
import { spacingBase } from 'bpk-tokens/tokens/base.react.native';
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
padding: spacingBase,
}
});
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<BpkSwitch />
<BpkSwitch value />
</View >
);
}
}
Props
| Property | PropType | Required | Default Value | | ----------- | ------------------------------------- | -------- | ------------- | | value | bool | false | false | | theme | See Theme Props below | false | null |
Theme Props
switchPrimaryColor