Skip to content

Latest commit

 

History

History
 
 

react-native-bpk-component-switch

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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