import React from 'react'; import { View, Text, Switch } from 'react-native'; import PropTypes from 'prop-types'; import styles from './styles'; import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors'; export default class SwitchContainer extends React.PureComponent { static propTypes = { value: PropTypes.bool, disabled: PropTypes.bool, leftLabelPrimary: PropTypes.string, leftLabelSecondary: PropTypes.string, rightLabelPrimary: PropTypes.string, rightLabelSecondary: PropTypes.string, onValueChange: PropTypes.func, theme: PropTypes.string, testID: PropTypes.string } render() { const { value, disabled, onValueChange, leftLabelPrimary, leftLabelSecondary, rightLabelPrimary, rightLabelSecondary, theme, testID } = this.props; return ( [ {leftLabelPrimary} {leftLabelSecondary} {rightLabelPrimary} {rightLabelSecondary} , ] ); } }