LoginSignup
5
1

More than 5 years have passed since last update.

React Native Navigation ヘッダーを透明にする。

Posted at

React Native Navigation ヘッダーを透明にする。

こんな感じでheaderのバックグラウンドを透明にしたかった。

6b337541da86c520d835bfffd162b266.png

navigationOptions = {
  headerTitle: '',
  headerStyle:{ 
    position: 'absolute',
    backgroundColor: 'transparent',
    zIndex: 100,
    top: 0,
    left: 0,
    right: 0,
    borderBottomWidth: 0,
   },

メモ。

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1