-
Notifications
You must be signed in to change notification settings - Fork 0
/
appContainer.js
59 lines (52 loc) · 1.59 KB
/
appContainer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import React, { Component } from 'react';
import {
View,
Text,
Image,
} from 'react-native';
import TabNavigator from 'react-native-tab-navigator';
import {
StackNavigator
} from 'react-navigation';
import Styles from './style';
import Feed from './feed';
import PushPayload from './pushPayload';
const BasicApp = StackNavigator({
Feed: {screen: Feed},
PushPayload: {screen: PushPayload},
});
class AppContainer extends Component {
constructor(props){
super(props);
this.state = {
selectedTab:'feed',
};
}
render() {
return(
<TabNavigator tabBarStyle={Styles.navBar}>
<TabNavigator.Item
selected={this.state.selectedTab === 'feed'}
title="Feed"
renderIcon={() => <Image style={Styles.icon} source={require('./img/github-home.png')} />}
//badgeText="9"
onPress={() => this.setState({ selectedTab: 'feed' })}>
<View>
<Feed />
</View>
</TabNavigator.Item>
<TabNavigator.Item
selected={this.state.selectedTab === 'search'}
title="Search"
renderIcon={() => <Image style={Styles.icon} source={require('./img/github-search.png')} />}
//renderBadge={() => <View />}
onPress={() => this.setState({ selectedTab: 'search' })}>
<View>
<Text>Tab2</Text>
</View>
</TabNavigator.Item>
</TabNavigator>
);
}
}
export default AppContainer;