gpt4 book ai didi

javascript - 内部带有自定义组件的 TouchableWithoutFeedback 不会触发 onPress 回调

转载 作者:数据小太阳 更新时间:2023-10-29 06:06:08 24 4
gpt4 key购买 nike

我做了一个 DEMO

所以问题是第三个按钮不起作用。按钮之间的唯一区别是我在 Header 组件中传递它们的方式。

<Header secondButton={<View style={styles.button}><Text>Second Button</Text></View>}
thirdButton={<ThirdButton />}
onPress={this._handlePress} />

最佳答案

我的解决办法是把这个...

<TouchableWithoutFeedback onPress={props.onPress}>
<Contents {...props} />
</TouchableWithoutFeedback>

进入这个...

<TouchableWithoutFeedback onPress={props.onPress}>
<View>
<Contents {...props} />
</View>
</TouchableWithoutFeedback>

关于javascript - 内部带有自定义组件的 TouchableWithoutFeedback 不会触发 onPress 回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30349140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com