📅  最后修改于: 2022-03-11 15:03:43.944000             🧑  作者: Mango
Copyfunction HomeScreen({ navigation }) { return ( Home Screen );}
function DetailsScreen({ route, navigation }) { /* 2. Get the param */ const { itemId } = route.params; const { otherParam } = route.params; return ( Details Screen itemId: {JSON.stringify(itemId)} otherParam: {JSON.stringify(otherParam)} );}