react-native-bpk-component-switch

Backpack React Native switch component.

Usage no npm install needed!

<script type="module">
  import reactNativeBpkComponentSwitch from 'https://cdn.skypack.dev/react-native-bpk-component-switch';
</script>

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