- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用 react-native-gesture-handler
中的 PanGestureHandler
和 react-native-reanimated
以及 useAnimatedGestureHandler
抛出这个错误。
Expected
onGestureHandlerEvent
listener to be a function, instead got a value ofobject
type
这些是正在渲染的组件,
<View style={[styles.center]}>
<Text style={{color: "#555", fontSize:16, marginTop: 120, marginBottom: 70, width: 250, margin: 'auto'}}>Works on the web but throws an error on iOS.</Text>
<Animated.View style={[styles.box, styles.center, animatedStyle]}>
<PanGestureHandler onGestureEvent={gestureHandler}>
<Text style={{color: "#444", fontWeight:'bold', padding: 16,}}>Drag me around</Text>
</PanGestureHandler>
</Animated.View>
</View>;
最佳答案
This comment在 GitHub 上指出了正确的方向。
虽然没有在文档中指定,但可以从示例中推断... PanGestureHandler
<PanGestureHandler ...>
内需要一个动画组件子组件. (如<Animated.View ...>
)
所以 <Animated.View ...>...</Animated.View>
,或其他一些动画组件,需要在 <PanGestureHandler onGestureEvent={gestureHandler}>
内.
<PanGestureHandler onGestureEvent={gestureHandler}>
<Animated.View style={[styles.box, styles.center, animatedStyle]}>
<Text style={{color: "#444", fontWeight:'bold', padding: 16,}}>Drag me around</Text>
</Animated.View>
</PanGestureHandler>
这是一份工作点心,
关于javascript - PanGestureHandler 预期 `onGestureHandlerEvent` 监听器是一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72317760/
使用 react-native-gesture-handler 中的 PanGestureHandler 和 react-native-reanimated 以及 useAnimatedGesture
我正在尝试在 React Native 中构建具有缩放和平移功能的全屏 ImageView 。我正在使用 react-native-gesture-handler 来处理多点触控。它在 iOS 上运行
import React, { useRef, useState, useCallback } from 'react'; import { View, Animated } from 'react-
在下面的简单 slider ( typescript )示例中,react-native-gesture-handler 中的 PanGestureHandler 仅在手势启动后才会设置。用户需要移动
在下面的简单 slider ( typescript )示例中,react-native-gesture-handler 中的 PanGestureHandler 仅在手势启动后才会设置。用户需要移动
我构建了一个照片拼贴应用程序,并有 UILabel 和 UIImageView 元素,我想向其中添加手势识别器。目前,我正在两个不同的函数中处理每种类型的 PanGesture,因为我需要将 panG
我正在构建一个可滑动的聊天屏幕,类似于不一致移动应用程序。在我当前的实现中,我有一个表示聊天屏幕的Animated.View。当我将它滑动到大约20%的屏幕时,它应该会自动滑动到80%的屏幕。然而,我
我是一名优秀的程序员,十分优秀!