react-native —— tabNavigator去掉阴影

官网上没看到,网上资料也是张三抄官网,李四抄张三的,偶尔看到一个tabBarShadowStyle, 原来是这样 :

tabBarShadowStyle={{

    elevation: 0,  // android

    shadowOffset: {width: 0, height: 0},  // ios (w 和 h 对应box-shadow x y 偏移)

    shadowColor: 'black',

    shadowOpacity: 0, // 透明度

    shadowRadius: 0,

    borderWidth: 0

}}

记录一下

你可能感兴趣的:(react-native —— tabNavigator去掉阴影)