/**
* Created by zhangyanlf on 2018/2/2.
*/
import React, { Component } from 'react';
import {
AppRegistry,
Platform,
StyleSheet,
Text,
View,
TouchableOpacity,
NativeModules,
ImageBackground,
DeviceEventEmitter
} from 'react-native';
export default class Tab extends Component {
renderItem = (route, index) => {
const {
navigation,
jumpToIndex,
} = this.props;
const focused = index === navigation.state.index;
const color = focused ? this.props.activeTintColor : this.props.inactiveTintColor;
let TabScene = {
focused:focused,
route:route,
tintColor:color
};
if(index === 2){
return (backgroundColor:'transparent'}]}>
);
}
return (
() => jumpToIndex(index)}
>
{this.props.renderIcon(TabScene)}
marginTop:SCALE(10),color }}>{this.props.getLabel(TabScene)}
);
};
render(){
const {navigation,jumpToIndex} = this.props;
const {routes,} = navigation.state;
const focused = 2 === navigation.state.index;
const color = focused ? this.props.activeTintColor : this.props.inactiveTintColor;
let TabScene = {
focused:focused,
route:routes[2],
tintColor:color
};
return (width:WIDTH}}>
{routes && routes.map((route,index) => this.renderItem(route, index))}
View>
{/*设置中间按钮凸出样式 使用绝对定位*/}
<TouchableOpacity
key={"centerView"}
style={[styles.tabItem,{position:'absolute',bottom:0,left:(WIDTH-SCALE(100))/2,right:WIDTH-SCALE(100),height:SCALE(120)}]}
onPress={() => jumpToIndex(2)}>
{this.props.renderIcon(TabScene)}
marginTop:SCALE(10),color }}>{this.props.getLabel(TabScene)}
);
}
}
const styles = {
tab:{
width:WIDTH,
backgroundColor:'transparent',
flexDirection:'row',
justifyContent:'space-around',
alignItems:'flex-end'
},
tabItem:{
height:SCALE(80),
width:SCALE(100),
alignItems:'center',
justifyContent:'center'
},
tabText:{
marginTop:SCALE(13),
fontSize:FONT(10),
color:'#7b7b7b'
},
tabTextChoose:{
color:'#f3474b'
},
tabImage:{
width:SCALE(42),
height:SCALE(42),
},
};
node_modules – react-navigation – src – views – Header – Header.js 修改368行 将 alignItems: Platform.OS === ‘ios’ ? ‘center’ : ‘flex-start’ 改为 ‘center’即可
title: {
bottom: 0,
left: TITLE_OFFSET,
right: TITLE_OFFSET,
top: 0,
position: 'absolute',
alignItems: 'center'//Platform.OS === 'ios' ? 'center' : 'flex-start',
}
本文已同步至本人博客zhangyanlf.cn