【发布时间】:2019-08-22 12:07:11
【问题描述】:
我最近刚开始学习 React Native iOS,我正在关注 raywenderlich 教程
我正在使用以下版本:
react-native-cli: 2.0.1
react-native: 0.60.5
在添加导航部分,我遵循完全相同的步骤,但出现以下错误
"you likely forgot to export your component from the file it's defined in and you might have mixed up with default and named imports"
这是我的 App.js 文件代码
'use strict';
import React, { Component } from 'react';
import { StyleSheet, Text, NavigatorIOS, View } from 'react-native';
class SearchPage extends Component<{}> {
render() {
return <Text style={styles.description}>Search for houses to buy!
</Text>;
}
}
class App extends Component<{}> {
render() {
return (
<NavigatorIOS
style={styles.container}
initialRoute={{
title: 'Property Finder',
component: SearchPage,
}}/>
);
}
}
const styles = StyleSheet.create({
description: {
fontSize: 18,
textAlign: 'center',
color: '#656565',
marginTop: 65,
},
container: {
flex: 1,
},
});
export default App;
Index.js 文件代码:
import {AppRegistry} from 'react-native';
import App from './App';
import {name as appName} from './app.json';
AppRegistry.registerComponent(appName, () => App);
请告诉我我做错了什么?提前谢谢!!!!
【问题讨论】:
-
您似乎缺少
export default class App extends Component。你能添加它然后再试一次吗? -
No 最后我做了一行“导出默认应用程序;”..请检查!!!
-
遇到同样的错误...有什么建议吗?
标签: javascript ios react-native react-native-ios react-native-navigation