react-native-bpk-component-switch

v4.0.1
Backpack React Native switch component.

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
npm i react-native-bpk-component-switch

Metadata

  • Apache-2.0
  • Whatever
  • Backpack Design System
  • released 2/26/2020

Downloads