- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法解决此问题,并查看了以下文档
https://www.npmjs.com/package/react-native-tab-view
我也没有遇到任何关于这个问题的文件。我使用了上面链接中提到的相同示例代码。
import * as React from 'react';
import { View, StyleSheet, Dimensions } from 'react-native';
import { TabView, SceneMap } from 'react-native-tab-view';
const FirstRoute = () => (
<View style={[styles.scene, { backgroundColor: '#ff4081' }]} />
);
const SecondRoute = () => (
<View style={[styles.scene, { backgroundColor: '#673ab7' }]} />
);
const initialLayout = { width: Dimensions.get('window').width };
export default function TabViewExample() {
const [index, setIndex] = React.useState(0);
const [routes] = React.useState([
{ key: 'first', title: 'First' },
{ key: 'second', title: 'Second' },
]);
const renderScene = SceneMap({
first: FirstRoute,
second: SecondRoute,
});
return (
<TabView
navigationState={{ index, routes }}
renderScene={renderScene}
onIndexChange={setIndex}
initialLayout={initialLayout}
/>
);
}
const styles = StyleSheet.create({
scene: {
flex: 1,
},
});
我该如何解决这个问题?
npm version is 6.14.4
React-native version is 0.62.2
react-native-tab-view: "^2.15.0"
react-native-gesture-handler: "^1.6.1"
react-native-reanimated: "^1.10.1"
@react-native-community/masked-view: "^0.1.10"
最佳答案
使用 react-native link react-native-reanimated
然后按照这个链接
https://github.com/software-mansion/react-native-reanimated/blob/master/Example/android/app/src/main/java/com/swmansion/reanimated/example/MainApplication.java
关于react-native - 类型错误 : null is not an object (evaluating '_ReanimatedModule.default.createNode' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63190006/
请问我目前在我的expo应用程序中遇到了这个错误,有没有人可以帮忙,我刚刚将我们的应用程序升级到expo/SDK 46.0.0,React Native 0.69.6,我被迫升级到reanimated
我无法解决此问题,并查看了以下文档 https://www.npmjs.com/package/react-native-tab-view 我也没有遇到任何关于这个问题的文件。我使用了上面链接中提到的
我在 linux 机器上安装了 react native。我想在我的练习代码中实现 createBottomTabNavigator。我在其中创建了 5 个文件夹和 index.js。导航.js: i
我是一名优秀的程序员,十分优秀!