youngjuning / issues

一寸欢喜 - 怕什么真理无穷,进一寸有一寸的欢喜
https://youngjuning.js.org
44 stars 4 forks source link

react-navigation 去除导航阴影 #213

Closed youngjuning closed 4 years ago

youngjuning commented 4 years ago
navigationOptions: {
  elevation: 0, // android
  borderBottomWidth: 0, // ios
}
youngjuning commented 4 years ago
let navigationOptions = {
    headerTransparent: true,
    headerStyle: {
      // 隐藏导航栏下的阴影效果
      elevation: 0,
      borderBottomWidth: 0,
    },
    headerTintColor: 'rgb(255, 255, 255)',
    headerTitleAllowFontScaling: false,
  }