mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-10 22:47:02 +08:00
118 lines
3.0 KiB
TypeScript
118 lines
3.0 KiB
TypeScript
import * as React from 'react';
|
|
import { SafeAreaView, Themed } from 'react-navigation';
|
|
import {
|
|
createStackNavigator,
|
|
NavigationStackScreenProps,
|
|
TransitionPresets,
|
|
HeaderStyleInterpolators,
|
|
} from 'react-navigation-stack';
|
|
|
|
import { Button } from './Shared/ButtonWithMargin';
|
|
|
|
class HomeScreen extends React.Component<NavigationStackScreenProps> {
|
|
static navigationOptions = {
|
|
title: 'Welcome',
|
|
};
|
|
|
|
render() {
|
|
const { navigation } = this.props;
|
|
const { push } = navigation;
|
|
|
|
return (
|
|
<SafeAreaView style={{ paddingTop: 30 }}>
|
|
<Button onPress={() => push('Other')} title="Push another screen" />
|
|
<Button
|
|
onPress={() => push('ScreenWithNoHeader')}
|
|
title="Push screen with no header"
|
|
/>
|
|
<Button onPress={() => navigation.goBack(null)} title="Go Home" />
|
|
<Themed.StatusBar />
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
class OtherScreen extends React.Component<NavigationStackScreenProps> {
|
|
static navigationOptions = {
|
|
title: 'Your title here',
|
|
};
|
|
|
|
render() {
|
|
const { navigation } = this.props;
|
|
const { push, pop } = navigation;
|
|
|
|
return (
|
|
<SafeAreaView style={{ paddingTop: 30 }}>
|
|
<Button
|
|
onPress={() => push('ScreenWithLongTitle')}
|
|
title="Push another screen"
|
|
/>
|
|
<Button
|
|
onPress={() => push('ScreenWithNoHeader')}
|
|
title="Push screen with no header"
|
|
/>
|
|
<Button onPress={() => pop()} title="Pop" />
|
|
<Button onPress={() => navigation.goBack(null)} title="Go back" />
|
|
<Themed.StatusBar />
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
class ScreenWithLongTitle extends React.Component<NavigationStackScreenProps> {
|
|
static navigationOptions = {
|
|
title: "Another title that's kind of long",
|
|
};
|
|
|
|
render() {
|
|
const { navigation } = this.props;
|
|
const { pop } = navigation;
|
|
|
|
return (
|
|
<SafeAreaView style={{ paddingTop: 30 }}>
|
|
<Button onPress={() => pop()} title="Pop" />
|
|
<Button onPress={() => navigation.goBack(null)} title="Go back" />
|
|
<Themed.StatusBar />
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
class ScreenWithNoHeader extends React.Component<NavigationStackScreenProps> {
|
|
static navigationOptions = {
|
|
headerShown: false,
|
|
title: 'No Header',
|
|
};
|
|
|
|
render() {
|
|
const { navigation } = this.props;
|
|
const { push, pop } = navigation;
|
|
|
|
return (
|
|
<SafeAreaView style={{ paddingTop: 30 }}>
|
|
<Button onPress={() => push('Other')} title="Push another screen" />
|
|
<Button onPress={() => pop()} title="Pop" />
|
|
<Button onPress={() => navigation.goBack(null)} title="Go back" />
|
|
<Themed.StatusBar />
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
}
|
|
|
|
const StackWithHeaderPreset = createStackNavigator(
|
|
{
|
|
Home: HomeScreen,
|
|
Other: OtherScreen,
|
|
ScreenWithLongTitle,
|
|
ScreenWithNoHeader,
|
|
},
|
|
{
|
|
defaultNavigationOptions: {
|
|
...TransitionPresets.SlideFromRightIOS,
|
|
headerStyleInterpolator: HeaderStyleInterpolators.forUIKit,
|
|
},
|
|
}
|
|
);
|
|
|
|
export default StackWithHeaderPreset;
|