在此UIManager中未发现违反常量的情况:requireNativeComponent:RNViewOverflow

时间:2019-11-29 20:05:49

标签: react-native

我正在使用React Native(带有Expo)来开发应用程序,但是遇到了一些麻烦。在iOS上运行正常,但在Android上出现此错误:

enter image description here

此刷卡组件不适用于Android吗?

我已经安装了react-native-view-overflow。

2 个答案:

答案 0 :(得分:5)

在处理相同问题时,我注意到了您的问题,并在GH的react-native-deck-swiper GH页面https://github.com/alexbrillant/react-native-deck-swiper/issues/218

中找到了

显然,您需要做的(为我工作了100%),只需在Swiper组件中添加以下内容即可:

import { Platform } from 'react-native'

...
<Swiper
  ...props
  useViewOverflow={Platform.OS === 'ios'}
/>

祝你好运!

答案 1 :(得分:0)

该功能在Android上不起作用,因为在您使用博览会时需要链接,因此不可能。 https://github.com/entria/react-native-view-overflow#manual-installation

注意:您可以弹出项目,而不能运行它。

有关更多信息,请检查问题 https://github.com/expo/expo/issues/1843