作者:kiki百乐门_867 | 来源:互联网 | 2022-10-12 19:18
一旦我使用以下命令安装了标签模块,React本机项目就可以正常运行而无需使用React Navigation标签模块
npm install --save react-navigation-tab
在节点终端上发生以下错误。
React-tab导航引发以下错误。
错误:捆绑失败:错误:无法解析模块react-native-reanimated
从node_modules\react-navigation-tabs\lib\module\views\MaterialTopTabBar.js
:反应母语-复活不能在项目中被发现。
1> chenop..:
react-navigation-tabs取决于react-navigation软件包。
因此,我认为您错过了“ 入门”部分。
当前,对于react-navigation 4.x,您应该:
yarn add react-navigation
yarn add react-native-reanimated react-native-gesture-handler react-native-screens@^1.0.0-alpha.23
然后针对ios:
cd ios
pod install
要完成Android的react-native-screens的安装,请将以下两行添加到的依赖项部分android/app/build.gradle
:
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'