如何修复 android 的 react-native 中的高程阴影问题

how to fix shadow problem with elevation in react-native for android

我正在尝试在 react-native 中的视图周围显示阴影。

我试过了

<View
      style={{
        flex: 0.3,
        margin: 4,
        ...Platform.select({
          ios: {
            shadowColor: '#000',
            shadowOffset: {width: 0, height: 4},
            shadowOpacity: 0.4,
          },
          android: {
            elevation: 2,
          },
        }),
      }}>

它在 iOs 上完美运行,但在 android 上它没有效果。 有一个名为 react-native-shadow 的库可以在 iOs 和 android 上完美运行,但是如何在不使用任何第三方库的情况下解决 android 中的阴影问题。

现在我有了这些属性,我已经为所需的动画提供了解决方法。试试这个,让我在评论中知道它是否对您有帮助。乐于助人。

   ...Platform.select({
            ios: {
                shadowColor: '#000',
                shadowOffset: { width: 0, height: 3 },
                shadowOpacity: 0.2,
            },
            android: {
                elevation: 0.4,
                // bottomElevation:4,
                borderBottomWidth: 0.2,
                borderTopWidth:0.2,
                borderColor:'#000'

            },
        }),

目前,我正在使用以下属性来处理 IOS 和 Android 平台上的阴影。

<View
  style={{
      height: 200,
      width: 350,
      borderRadius: 4,
      margin: 5,
      shadowColor: 'rgba(0,0,0,0.5)',
      shadowOffset: {width: 0, height: 5},
      shadowOpacity: 2,
      shadowRadius: 2,
      elevation: 4,
      backgroundColor: '#fff',
  }}>