React Native Tabbar Android图像不溢出

时间:2017-12-07 11:46:45

标签: android react-native react-navigation react-native-router-flux

我正在使用react-native-router-flux

中央按钮高于Tabbar,在iOS上运行良好但在Android上按钮的上半部分被剪切,请参见图像:

的iOS

enter image description here

的Android

enter image description here

这是Tabbar Social组件的样式:

const BtnTabbarSocial = (props) => {
    const source = ...
    return (
        <View style={styles.container}>
            <Image
                source={source} 
            />
        </View>
    );
};

const styles = {
    container: {
        width: 64,
        height: 60,
        alignItems: 'center',
        justifyContent: 'center',
        borderRadius: 30,
        paddingBottom: 5,
        position: 'absolute',
    }
};

0 个答案:

没有答案