📌  相关文章
📜  react native 中的底部阴影 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:29.295000             🧑  作者: Mango

代码示例1
const styles = StyleSheet.create({
  container: {
    ...Platform.select({
      ios: {
        shadowColor: '#000',
        shadowOffset: {width: 1, height: 3},
        shadowOpacity: 0.2,
      },
      android: {
        elevation: 4,
      },
    }),
  },
});