高程样式属性为 Android 5.0+ 启用框阴影。
我是否在这里对“海拔”做了一些不寻常的事情,以导致下面的屏幕截图中可以看到的丑陋?另外,有没有办法定义阴影偏移?
模拟器正在运行 6.0 (> 5.0),所以这不是问题。我正在运行 react-native 25.1。
"dependencies": {
"react": "^0.14.8",
"react-native": "^0.25.1",
"react-native-gcm-android": "^0.2.0",
"react-native-material-design": "^0.3.5",
"react-native-system-notification": "^0.1.10",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
}
这是我的渲染方法:
render() {
return (
<ListView
dataSource={alertData}
renderRow={(rowData) =>
<View style={style.cardContainer}>
<Text>{rowData.blah}</Text>
<Text>{"#" + rowData.foo}</Text>
<Text>{rowData.blah}</Text>
<Text>{rowData.foo}</Text>
<Text>{rowData.baz}</Text>
</View>
}
/>
);
}
以及样式声明:
var style = StyleSheet.create({
cardContainer : {
elevation : 3,
flex : 1,
margin : 10,
padding : 10,
borderWidth : 2,
borderColor : beeStyles.colors.lightGray
}
});
不知何故,它导致了这个......