我是本机反应的新手,正在处理一个项目我已经完成了我项目的所有屏幕,但是当我想导航到不同的屏幕时,我在单击按钮而不是切换屏幕时出现此错误。 这是我的 app.js 代码
import { StatusBar } from "expo-status-bar";
import React from "react";
import Cardlist from "./components/MainMenu";
export default function App() {
return <Cardlist />;
}
const styles = StyleSheet.create({
container: {
flex: 1,
// backgroundColor: 'red',
alignItems: "center",
justifyContent: "center",
width: "100%",
},
});
这是我的按钮屏幕,这里我在屏幕底部创建了两个按钮,当我按下按钮时出现错误
import React from "react";
import { View, Text, FlatList, Dimensions, Image } from "react-native";
import { Button } from "react-native-elements";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import CardView from "../CardView";
import LoginScreen from "../Login/login";
import ApplyLoan from "../MainPage/ApplyLoan";
import styles from "./styles";
import imgs from "./imgs";
function BtnScreen({ navigation }) {
return (
<View style={styles.btncontainer}>
<Button
buttonStyle={styles.loginButton}
title="Login"
onPress={() => navigation.Navigate("Login")}
/>
<Button
buttonStyle={styles.loginButton}
title="Apply Now"
onPress={() => navigation.Navigate("Applynow")}
></Button>
</View>
);
}
const AuthStack = createStackNavigator();
const Cardlist = (props) => {
return (
<View style={styles.button}>
<View style={styles.container}>
<Image
style={styles.logo}
source={require("../../assets/images/123.jpeg")}
/>
</View>
<FlatList
style={styles.flat}
data={imgs}
renderItem={({ item }) => <CardView card={item} />}
showsVerticalScrollIndicator={false}
snapToAlignment={"start"}
decelerationRate={"fast"}
snapToInterval={Dimensions.get("window").height}
/>
<BtnScreen />
<NavigationContainer>
<AuthStack.Navigator>
<AuthStack.Screen name="Login" component={LoginScreen} />
<AuthStack.Screen name="Applynow" component={ApplyLoan} />
</AuthStack.Navigator>
</NavigationContainer>
</View>
);
};
export default Cardlist;
答案 0 :(得分:1)
navigation.navigate('Login')
代替
navigation.Navigate('Login')
修改你的导航器,让 BtnScreen 在 AuthStack 中
<AuthStack.Navigator initialRouteName="ButtonScreen">
<AuthStack.Screen name="Login" component={LoginScreen} />
<AuthStack.Screen name="Applynow" component={ApplyLoan} />
<AuthStack.Screen name="ButtonScreen" component={BtnScreen} />
<AuthStack.Screen name="CardList" component={CardList} />
</AuthStack.Navigator>