React Native 手势处理程序(ScrollView)不工作

问题描述 投票:0回答:1

错误:NativeViewGestureHandler 必须用作 GestureHandlerRootView 的后代。否则手势将无法被识别。有关更多详细信息,请参阅https://docs.swmansion.com/react-native-gesture-handler/docs/installation

有什么解决办法吗?

我尝试了很多方法但没有用... 期待一些相关的答案...

android react-native scrollview react-native-gesture-handler react-google-autocomplete
1个回答
0
投票

你需要用 GestureHandlerRootView 包裹

import { GestureHandlerRootView } from 'react-native-gesture-handler';

export default function App() {
    return (
        <GestureHandlerRootView>
            {/* Your entire application components */}
        </GestureHandlerRootView>
    );
}
© www.soinside.com 2019 - 2024. All rights reserved.