We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d01bc22 commit d45411eCopy full SHA for d45411e
README.md
@@ -37,6 +37,16 @@ class test extends Component {
37
onRightValueChange = {(rightValue) => this.setState({rightValue})}
38
/>
39
</View>
40
+ <TouchableOpacity onPress = {() => this.onPress(true)}>
41
+ <View style = {styles.button}>
42
+ <Text>Click to disable</Text>
43
+ </View>
44
+ </TouchableOpacity>
45
+ <TouchableOpacity onPress = {() => this.onPress(false)}>
46
47
+ <Text>Click to able</Text>
48
49
50
51
);
52
}
0 commit comments