下面的代码使除可触摸按钮之外的整个屏幕可点击,我如何停止它并仅使按钮可点击。谢谢你。
<View style={styles.slide3}>
<Text >And simple</Text>
<View>
<TouchableOpacity
onPress= {() => this.handleStart(this.props.history)}
// hitSlop={{top: 1, bottom: 1, left: 1, right: 1}}
>
<Text >Start</Text>
</TouchableOpacity>
</View>
</View>
我style
的定义为:
var style = {
slide3: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#92BBD9',
}
}