本文介绍了React Native的ViewPager给出错误:: :: ViewPagerAndroid已从React Native移除的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图在React Native上使用View Pager,并且我正在使用参考链接寻求帮助
I am trying to use the View Pager on React Native and I am using the reference link for helphttps://reactnativecode.com/create-viewpager-with-tab-title-dot-indicators/?unapproved=42387&moderation-hash=570c68d8ea5535b832994536ba239b28#comment-42387
当我直接使用代码并运行时,会出现错误-
When I use the code as it is and run, it gives an error -
ViewPagerAndroid has been removed from React Native. It can now be installed and imported from 'react-native-viewpager' instead of 'react-native'.
我想念的是什么?
推荐答案
yarn add @react-native-community/viewpager
或
npm -i @react-native-community/viewpager --save
要使用这些命令进行链接
For linking use these command
react-native link @react-native-community/viewpager
在较新版本的React Native ViewPager中不可用,因此您必须手动添加它
In Newer versions of React Native ViewPager is not available, so you have to add it manually
然后,您可以像这样导入
then, you can import it like these
import ViewPager from '@react-native-community/viewpager';
这篇关于React Native的ViewPager给出错误:: :: ViewPagerAndroid已从React Native移除的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!