美文网首页React Native开发
react native 导航透明

react native 导航透明

作者: 小西瓜简书 | 来源:发表于2019-01-24 21:19 被阅读24次

导航透明

  • 效果一
    导航透明,但是导航栏仍然具有返回等功能


    image.png

-效果二
导航全透明,并且导航为空


image.png

效果一实现方式:

  static navigationOptions = ({ navigation }) => {
      return {
        headerTransparent: true, // 背景透明
      }
  }

效果二实现方式:

  static navigationOptions = ({ navigation }) => {
      return {  
        header:  null
        headerTransparent: true, // 背景透明
      }
  }

相关文章

网友评论

    本文标题:react native 导航透明

    本文链接:https://www.haomeiwen.com/subject/kwoujqtx.html