import React, {Component} from 'react'; import {Text, View, Switch, Colors} from 'react-native-ui-lib'; //eslint-disable-line class SwitchScreen extends Component { state = { value1: true, value2: false, value3: true, value4: false, value5: false, }; render() { return ( this.setState({value1})} style={{marginBottom: 20}}/> this.setState({value2})} style={{marginBottom: 20}} /> this.setState({value3})} style={{marginBottom: 20}} /> this.setState({value4})} style={{marginBottom: 20}} /> Disabled: this.setState({value5})} style={{marginRight: 10}} /> this.setState({value5})} /> Switch ); } } export default SwitchScreen;