mirror of
https://github.com/status-im/react-navigation.git
synced 2025-02-25 09:35:19 +00:00
94 lines
1.7 KiB
JavaScript
94 lines
1.7 KiB
JavaScript
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import {
|
|
Button,
|
|
Platform,
|
|
ScrollView,
|
|
StyleSheet,
|
|
Text,
|
|
} from 'react-native';
|
|
import {
|
|
DrawerNavigator,
|
|
} from 'react-navigation';
|
|
import MaterialIcons from 'react-native-vector-icons/MaterialIcons';
|
|
import SampleText from './SampleText';
|
|
|
|
const MyNavScreen = ({ navigation, banner }) => (
|
|
<ScrollView style={styles.container}>
|
|
<SampleText>{banner}</SampleText>
|
|
<Button
|
|
onPress={() => navigation.navigate('DrawerOpen')}
|
|
title="Open drawer"
|
|
/>
|
|
<Button
|
|
onPress={() => navigation.goBack(null)}
|
|
title="Go back"
|
|
/>
|
|
</ScrollView>
|
|
);
|
|
|
|
const InboxScreen = ({ navigation }) => (
|
|
<MyNavScreen
|
|
banner={'Inbox Screen'}
|
|
navigation={navigation}
|
|
/>
|
|
);
|
|
InboxScreen.navigationOptions = {
|
|
drawer: {
|
|
label: 'Inbox',
|
|
icon: ({ tintColor }) => (
|
|
<MaterialIcons
|
|
name="move-to-inbox"
|
|
size={24}
|
|
style={{ color: tintColor }}
|
|
/>
|
|
),
|
|
},
|
|
};
|
|
|
|
const DraftsScreen = ({ navigation }) => (
|
|
<MyNavScreen
|
|
banner={'Drafts Screen'}
|
|
navigation={navigation}
|
|
/>
|
|
);
|
|
DraftsScreen.navigationOptions = {
|
|
drawer: {
|
|
label: 'Drafts',
|
|
icon: ({ tintColor }) => (
|
|
<MaterialIcons
|
|
name="drafts"
|
|
size={24}
|
|
style={{ color: tintColor }}
|
|
/>
|
|
),
|
|
},
|
|
};
|
|
|
|
const DrawerExample = DrawerNavigator({
|
|
Inbox: {
|
|
path: '/',
|
|
screen: InboxScreen,
|
|
},
|
|
Drafts: {
|
|
path: '/sent',
|
|
screen: DraftsScreen,
|
|
},
|
|
}, {
|
|
initialRouteName: 'Drafts',
|
|
contentOptions: {
|
|
activeTintColor: '#e91e63',
|
|
},
|
|
});
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
marginTop: Platform.OS === 'ios' ? 20 : 0,
|
|
},
|
|
});
|
|
|
|
export default DrawerExample;
|