fix: 修复安卓端帖子卡片点击事件冲突问题
- 为嵌套TouchableOpacity添加stopPropagation防止事件冒泡 - 修复grid模式下图片和用户头像点击事件 - 修复列表模式下所有交互按钮点击事件 - 优化手势配置添加shouldCancelWhenOutside
This commit is contained in:
@@ -320,6 +320,7 @@ export const HomeScreen: React.FC = () => {
|
||||
.runOnJS(true)
|
||||
.activeOffsetX([-15, 15])
|
||||
.failOffsetY([-20, 20])
|
||||
.shouldCancelWhenOutside(true)
|
||||
.onEnd((event) => {
|
||||
const now = Date.now();
|
||||
if (now - lastSwipeAtRef.current < SWIPE_COOLDOWN_MS) {
|
||||
|
||||
Reference in New Issue
Block a user