嗨,我是新手做出反应,我正面临路由的奇怪问题。我做错了什么但需要有人来指导我。
index.android.js
import { LandingScreen } from './src/components/landing_screen.js'
import HomeScreen from './src/app_component.js'
import { StackNavigator } from 'react-navigation';
const SimpleApp = StackNavigator({
Home: { screen: HomeScreen },
Landing: { screen: LandingScreen},
});
AppRegistry.registerComponent('HomeScreen', () => SimpleApp);
app_component.js
// Other imports ...
export default class HomeScreen extends Component {
static navigationOptions = {
title: 'Home Screen',
};
render() {
const { navigate } = this.props.navigation;
return (
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}> Hello CHannoo!!!</Text>
<Text style={styles.instructions}>
To get started, edit index.android.js
</Text>
<Text style={styles.instructions}>
Double tap R on your keyboard to reload,{'\n'}
Shake or press menu button for dev menu
</Text>
<Button
title="Go to 2nd Page"
onPress={() =>
// alert('hello');
navigate('LandingScreen')
// navigate('Home', { name: 'Jane' })
}
/>
</View>
);
}
componentDidMount () {
SplashScreen.close({
animationType: SplashScreen.animationType.scale,
duration: 850,
delay: 500,
})
}
}
landing_screen.js
export default class LandingScreen extends Component {
static navigationOptions = {
title: 'Landing Screen Title',
};
render() {
return (........)
}
如果我们删除路线着陆,它可以正常工作。但是当我们添加这条路线时,我们会收到错误。
路线'着陆'应该声明一个屏幕。例如......
答案 0 :(得分:5)
您的LandingScreen已导出为default
,但您是按名称导入的。
你的import语句是这样的:
import { LandingScreen } from './src/components/landing_screen.js'
将其替换为下面的行(不带花括号):
import LandingScreen from './src/components/landing_screen.js'
它应该解决问题。
但是@Medet指出你可能会收到一个新错误,因为你必须改变这一行:
navigate('LandingScreen')
到:
navigate('Landing')
因为您的网名是Landing。
答案 1 :(得分:1)
您致电a[101]
但屏幕名称为navigate('LandingScreen')
+ @ Dusk的答案应该解决