-
Notifications
You must be signed in to change notification settings - Fork 0
/
TabComponent.js
86 lines (68 loc) · 2.14 KB
/
TabComponent.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
import React from 'react';
import Headers from './Headers';
import {StyleSheet,Platform, Text, TouchableNativeFeedback, View,ScrollView, Animated } from 'react-native';
import { Content,Header,Left,Body,Icon, Image,Right,Title,Button} from 'native-base';
class TabComponent extends React.Component {
render () {
const {
navigation,
renderIcon,
activeTintColor,
inactiveTintColor,
jumpToIndex
} = this.props;
console.log(this.props);
const {routes} = navigation.state;
console.log(routes);
let header=null;
let currentIndex=navigation.state.index;
let currentKey=navigation.state.routes[currentIndex].key
console.log();
header=<Headers navigation={navigation} tabKey = {currentKey} />;
return (
<View>
{header}
<View style={styles.tabbar}>
{routes && routes.map((route, index) => {
const focused = index === navigation.state.index;
const tintColor = focused ? activeTintColor : inactiveTintColor;
const tabKey = route.key;
return (
<TouchableNativeFeedback
key={route.key}
style={styles.tab}
onPress={()=>{jumpToIndex(index); }}
background={Platform.OS === 'android' ? TouchableNativeFeedback.SelectableBackground() : ''}>
<View style={styles.tab}>
{renderIcon({
route,
index,
focused,
tintColor
})}
</View>
</TouchableNativeFeedback>
);
})}
</View>
</View>
)
}
};
const styles = StyleSheet.create({
tabbar: {
height: 45,
flexDirection: 'row',
borderBottomWidth: 1,
borderTopWidth:0,
borderBottomColor: 'blue',
backgroundColor: 'white',
},
tab: {
alignSelf: 'stretch',
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
export default TabComponent;