<View style={{ backgroundColor: this.state.value ? "rgba(81, 195, 157, 0.16)" : "rgba(204, 204, 204, 0.16)", borderRadius: 50, paddingVertical: 2, paddingHorizontal: 4 }} > <Switch tintColor="transparent" thumbTintColor={this.state.value ? "#51c39d" : "#cccccc"} onTintColor="transparent" value={this.state.value} style={{ transform: [{ scaleX: 1.3 }, { scaleY: 1.3 }] }} onValueChange={value => this.setState({ value })} /> </View>
source share