为什么我的高度阴影在错误的一面反应原生?

时间:2018-04-27 13:16:36

标签: css reactjs react-native

为什么我的仰角会出现在顶部而不是底部?实际上我宁愿它出现在底部。如何调整高程阴影出现的位置?

const autoStyles = StyleSheet.create({
    suggestionsWrapper: {
        marginTop: 35,
        marginBottom: 5,
        position:'absolute',
        display:'flex',
        left:0,
        top:15,
        backgroundColor:'#fff',
        width:'100%',
        zIndex:10000,
        height:150,
        elevation:5
    },
    suggestion: {
        top:0,
        left:0,
        height: 30,
        padding: 5,
        borderBottomColor: '#ddd',
        borderBottomWidth: 1
    },
    suggestionText: {
        fontSize: 15
    },
    input: {
        fontSize: 15
    },
    wrapper: {
        flex: 1
    }
});

enter image description here

0 个答案:

没有答案