框阴影渲染损坏

时间:2018-11-07 10:05:25

标签: android react-native

通过将这些样式添加到我的FlatList items中,呈现的输出看起来确实很奇怪。 如何摆脱物品内部的灰色瑕疵?

const styles = StyleSheet.create({
    item: {
        flex: 1,
        padding: 10,
        marginBottom: 10,
        flexDirection: 'row',
        borderWidth: 1,
        borderColor: 'gray',
        justifyContent: 'space-between',
        alignItems: 'center',
        shadowColor: '#000000',
        shadowOffset: {
            width: 0,
            height: 3
        },
        shadowRadius: 5,
        shadowOpacity: 1.0,
        elevation: 5
    }
});

broken shadow

我正在查看安装了Android 7.1.1(Android Studio)的Pixel 2 AVD。

0 个答案:

没有答案