有些东西不工作,我的反应本机应用程序不工作

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

我从这个网站获得了代码:https://www.google.com/amp/s/aboutreact.com/react-native-login-and-signup/amp/

请帮助我:

错误:Reanimated 2 无法创建工作集,

也许你忘记添加 Reanimated 的 babel 插件?

检查插件状态
核心.ts:56:12

已配置 核心.ts:68:25

已配置检查 核心.ts:72:19

使共享 核心.ts:146.19

在UI上运行 核心.ts:142:22

LayoutAnimationRepository.ts:7

loadModule实现 require.js:39:11

createAnimatedComponent.tsx:15

loadModule实现 require.js:339:11

动画.js:2

loadModule实现 require.js:339:11

DrawerView.tsx:22

关闭重新加载复制额外信息

enter image description here

javascript ios react-native mobile
2个回答
0
投票

您编写的代码或依赖库都使用 React Native Reanimated 2 worklet。

在您的项目结构中,查看名为

babel.config.js
的文件并添加以下代码:

module.exports = {
  presets: ['module: metro-react-native-babel-preset'],
  plugins: [
    'react-native-reanimated/plugin'
  ]
};

0
投票

你可以先试试这个方法:

npx

npx react-native start --reset-cache

纱线

yarn start --reset-cache

希望这个方法可以解决你的问题

© www.soinside.com 2019 - 2024. All rights reserved.