我在TapGestureHandler
中有一个onHandlerStateChange
事件。当onHandlerStateChange被触发时,我想改变TapGestureHandler
中一个按钮的不透明度。
<View style={{ height: height / 3, justifyContent: 'center' }}>
<TapGestureHandler onHandlerStateChange={ this.onStateChange }>
<Animated.View
style={{ ...styles.button, opacity: this.buttonOpacity }}>
<Text style= {{ fontSize:16, fontWeight: 'bold' }}>GET STARTED</Text>
</Animated.View>
</TapGestureHandler>
</View>
在this.onStateChange
中,我有以下代码来更改不透明度。
constructor(props) {
super(props);
this.state={
}
this.buttonOpacity = new Value(1)
this.onStateChange = event([{
nativeEvent: ({ state }) =>
block([
cond( eq(state, State.END), set(this.buttonOpacity, 0) )
])
}])
}
即时通讯使用Android Studio模拟器,并试图运行Android应用程序使用react-native run-android
,也导入
import Animated from 'react-native-reanimated'
import {TapGestureHandler, State} from 'react-native-gesture-handler'
我是一个初学者React Native编程。
2条答案
按热度按时间wljmcqd81#
修复(请按照步骤操作)
使用MainActivity.java以下代码更新www.example.com
//不要忘记导入
//将下面的方法添加到主活动类中
h79rfbju2#
我在使用react-native-vision-camera的示例代码时也遇到了这个问题。它的react-native-gesture-handler版本是1.10.3。但我安装了最新版本。我检查了文档的迁移页面,并在顶部添加了
GestureHandlerRootView
而不是View
。没有任何其他更改,它工作了!