0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ReactNavigationのborderを消す方法

Last updated at Posted at 2023-02-09

概要

ReactNavigationを使ってヘッダーを入れているのですが
どうしてもヘッダー下のborderが消せず...
ネットにある解決方法では対応できなかったので、備忘録として投稿します。

やりたいこと

  • ReactNavigationの下線を消したい

スクリーンショット 2023-02-09 22.41.57.png

解決方法

headerShadowVisible: falseを入れるだけ!!
headerStyleなど、スタイルを入れている場所に追加すればOKでした。

<Stack.Navigator initialRouteName="Home" screenOptions={{
    headerStyle: {
      backgroundColor: '#f5f5f5'
    },
    headerTintColor: '#333',
    headerTitleStyle: {
      fontWeight: 'bold'
    },
    headerShadowVisible: false
    }}>

消えたー!:relaxed:

スクリーンショット 2023-02-09 22.29 2.png

解説

headerShadowVisible​
Whether to hide the elevation shadow (Android) or the bottom border (iOS) on the header.
(ヘッダーの標高の影 (Android) または下の境界線 (iOS) を非表示にするかどうか。)

まとめ

  • 公式ドキュメントをまず読もう
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?