gpt4 book ai didi

React-native,动态渲染按钮点击

转载 作者:行者123 更新时间:2023-12-04 23:41:02 25 4
gpt4 key购买 nike

我想为 TouchableOpacity 动态生成一个按钮点击在 native react 中,
我没有找到任何相关信息

我想要的只是从函数中调用 TouchableOpacity onPress(或查看它对按钮的影响)

在钛中我们正在做 $.button.click
我尝试使用动画但没有运气
https://facebook.github.io/react-native/docs/animations.html

所以有人可以帮忙吗?提前致谢

最佳答案

这真的是不可取的,但这样的事情应该有效:

simulatePress() {
this.touchable.props.onPress();
}

render() {
return (
<TouchableOpacity ref={component => this.touchable = component} onPress={() => console.log('onPress')}>
<Text>Tap me</Text>
</TouchableOpacity
);
}

真的,你想要达到什么目标?可能有更好的方法来做到这一点。

关于React-native,动态渲染按钮点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37527446/

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