通过将这些样式添加到我的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
}
});
我正在查看安装了Android 7.1.1(Android Studio)的Pixel 2 AVD。