mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 09:13:32 +08:00
152 lines
3.6 KiB
TypeScript
152 lines
3.6 KiB
TypeScript
import React from 'react';
|
|
import { ScrollView, StatusBar } from 'react-native';
|
|
import { Ionicons } from '@expo/vector-icons';
|
|
import {
|
|
getActiveChildNavigationOptions,
|
|
NavigationScreenProp,
|
|
NavigationState,
|
|
SafeAreaView,
|
|
} from 'react-navigation';
|
|
import {
|
|
createStackNavigator,
|
|
NavigationStackScreenProps,
|
|
} from 'react-navigation-stack';
|
|
import { createBottomTabNavigator } from 'react-navigation-tabs';
|
|
import { Button } from './Shared/ButtonWithMargin';
|
|
import SampleText from './Shared/SampleText';
|
|
|
|
const MyNavScreen = ({
|
|
navigation,
|
|
banner,
|
|
}: {
|
|
navigation: NavigationScreenProp<NavigationState>;
|
|
banner: string;
|
|
}) => (
|
|
<ScrollView>
|
|
<SafeAreaView forceInset={{ horizontal: 'always', vertical: 'never' }}>
|
|
<SampleText>{banner}</SampleText>
|
|
<Button
|
|
onPress={() => navigation.navigate('Profile', { name: 'Jordan' })}
|
|
title="Open profile screen"
|
|
/>
|
|
<Button
|
|
onPress={() => navigation.navigate('NotifSettings')}
|
|
title="Open notifications screen"
|
|
/>
|
|
<Button
|
|
onPress={() => navigation.navigate('SettingsTab')}
|
|
title="Go to settings tab"
|
|
/>
|
|
<Button onPress={() => navigation.goBack(null)} title="Go back" />
|
|
</SafeAreaView>
|
|
<StatusBar barStyle="default" />
|
|
</ScrollView>
|
|
);
|
|
|
|
const MyHomeScreen = ({
|
|
navigation,
|
|
}: {
|
|
navigation: NavigationScreenProp<NavigationState>;
|
|
}) => <MyNavScreen banner="Home Screen" navigation={navigation} />;
|
|
|
|
const MyProfileScreen = ({
|
|
navigation,
|
|
}: {
|
|
navigation: NavigationScreenProp<NavigationState>;
|
|
}) => (
|
|
<MyNavScreen
|
|
banner={`${navigation.state.params!.name}s Profile`}
|
|
navigation={navigation}
|
|
/>
|
|
);
|
|
|
|
const MyNotificationsSettingsScreen = ({
|
|
navigation,
|
|
}: NavigationStackScreenProps) => (
|
|
<MyNavScreen banner="Notifications Screen" navigation={navigation} />
|
|
);
|
|
|
|
const MySettingsScreen = ({
|
|
navigation,
|
|
}: {
|
|
navigation: NavigationScreenProp<NavigationState>;
|
|
}) => <MyNavScreen banner="Settings Screen" navigation={navigation} />;
|
|
|
|
const TabNav = createBottomTabNavigator({
|
|
MainTab: {
|
|
navigationOptions: {
|
|
tabBarIcon: ({
|
|
tintColor,
|
|
focused,
|
|
}: {
|
|
tintColor: string;
|
|
focused: boolean;
|
|
}) => (
|
|
<Ionicons
|
|
name={focused ? 'ios-home' : 'ios-home'}
|
|
size={26}
|
|
style={{ color: tintColor }}
|
|
/>
|
|
),
|
|
tabBarLabel: 'Home',
|
|
title: 'Welcome',
|
|
},
|
|
path: '/',
|
|
screen: MyHomeScreen,
|
|
},
|
|
SettingsTab: {
|
|
navigationOptions: {
|
|
tabBarIcon: ({
|
|
tintColor,
|
|
focused,
|
|
}: {
|
|
tintColor: string;
|
|
focused: boolean;
|
|
}) => (
|
|
<Ionicons
|
|
name={focused ? 'ios-settings' : 'ios-settings'}
|
|
size={26}
|
|
style={{ color: tintColor }}
|
|
/>
|
|
),
|
|
title: 'Settings',
|
|
},
|
|
path: '/settings',
|
|
screen: MySettingsScreen,
|
|
},
|
|
});
|
|
|
|
TabNav.navigationOptions = ({
|
|
navigation,
|
|
screenProps,
|
|
}: {
|
|
navigation: NavigationScreenProp<NavigationState>;
|
|
screenProps: { [key: string]: any };
|
|
}) => {
|
|
const childOptions = getActiveChildNavigationOptions(navigation, screenProps);
|
|
return {
|
|
title: childOptions.title,
|
|
};
|
|
};
|
|
|
|
const StacksOverTabs = createStackNavigator({
|
|
NotifSettings: {
|
|
navigationOptions: {
|
|
title: 'Notifications',
|
|
},
|
|
screen: MyNotificationsSettingsScreen,
|
|
},
|
|
Profile: {
|
|
navigationOptions: ({ navigation }: NavigationStackScreenProps) => ({
|
|
title: `${navigation.state.params!.name}'s Profile!`,
|
|
}),
|
|
path: '/people/:name',
|
|
screen: MyProfileScreen,
|
|
},
|
|
Root: {
|
|
screen: TabNav,
|
|
},
|
|
});
|
|
|
|
export default StacksOverTabs;
|