mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-05-09 07:18:35 +08:00
127 lines
3.1 KiB
TypeScript
127 lines
3.1 KiB
TypeScript
import * as React from 'react';
|
|
import { View, StyleSheet, ScrollView } from 'react-native';
|
|
import { Button } from 'react-native-paper';
|
|
import { RouteProp, ParamListBase } from '@react-navigation/native';
|
|
import {
|
|
createStackNavigator,
|
|
StackNavigationProp,
|
|
TransitionPresets,
|
|
} from '@react-navigation/stack';
|
|
import Article from '../Shared/Article';
|
|
import Albums from '../Shared/Albums';
|
|
|
|
type ModalStackParams = {
|
|
Article: { author: string };
|
|
Album: undefined;
|
|
};
|
|
|
|
type ModalStackNavigation = StackNavigationProp<ModalStackParams>;
|
|
|
|
const ArticleScreen = ({
|
|
navigation,
|
|
route,
|
|
}: {
|
|
navigation: ModalStackNavigation;
|
|
route: RouteProp<ModalStackParams, 'Article'>;
|
|
}) => {
|
|
return (
|
|
<ScrollView>
|
|
<View style={styles.buttons}>
|
|
<Button
|
|
mode="contained"
|
|
onPress={() => navigation.push('Album')}
|
|
style={styles.button}
|
|
>
|
|
Push album
|
|
</Button>
|
|
<Button
|
|
mode="outlined"
|
|
onPress={() => navigation.goBack()}
|
|
style={styles.button}
|
|
>
|
|
Go back
|
|
</Button>
|
|
</View>
|
|
<Article author={{ name: route.params.author }} scrollEnabled={false} />
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
const AlbumsScreen = ({ navigation }: { navigation: ModalStackNavigation }) => {
|
|
return (
|
|
<ScrollView>
|
|
<View style={styles.buttons}>
|
|
<Button
|
|
mode="contained"
|
|
onPress={() => navigation.push('Article', { author: 'Babel fish' })}
|
|
style={styles.button}
|
|
>
|
|
Push article
|
|
</Button>
|
|
<Button
|
|
mode="outlined"
|
|
onPress={() => navigation.goBack()}
|
|
style={styles.button}
|
|
>
|
|
Go back
|
|
</Button>
|
|
</View>
|
|
<Albums scrollEnabled={false} />
|
|
</ScrollView>
|
|
);
|
|
};
|
|
|
|
const ModalPresentationStack = createStackNavigator<ModalStackParams>();
|
|
|
|
type Props = {
|
|
options?: React.ComponentProps<typeof ModalPresentationStack.Navigator>;
|
|
navigation: StackNavigationProp<ParamListBase>;
|
|
};
|
|
|
|
export default function SimpleStackScreen({ navigation, options }: Props) {
|
|
navigation.setOptions({
|
|
headerShown: false,
|
|
});
|
|
|
|
return (
|
|
<ModalPresentationStack.Navigator
|
|
mode="modal"
|
|
headerMode="screen"
|
|
screenOptions={({ route, navigation }) => ({
|
|
...TransitionPresets.ModalPresentationIOS,
|
|
cardOverlayEnabled: true,
|
|
gestureEnabled: true,
|
|
headerStatusBarHeight:
|
|
navigation.dangerouslyGetState().routes.indexOf(route) > 0
|
|
? 0
|
|
: undefined,
|
|
})}
|
|
{...options}
|
|
>
|
|
<ModalPresentationStack.Screen
|
|
name="Article"
|
|
component={ArticleScreen}
|
|
options={({ route }) => ({
|
|
title: `Article by ${route.params.author}`,
|
|
})}
|
|
initialParams={{ author: 'Gandalf' }}
|
|
/>
|
|
<ModalPresentationStack.Screen
|
|
name="Album"
|
|
component={AlbumsScreen}
|
|
options={{ title: 'Album' }}
|
|
/>
|
|
</ModalPresentationStack.Navigator>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
buttons: {
|
|
flexDirection: 'row',
|
|
padding: 8,
|
|
},
|
|
button: {
|
|
margin: 8,
|
|
},
|
|
});
|