LoginSignup
2
0

More than 3 years have passed since last update.

ReactNative for WebのTextInputでアウトラインを消す方法

Posted at

はじめに

ReactNative for WebのTextInputにてフォーカスした際に出てくる線(アウトライン)を削除したい。

81998707-a6f61180-966c-11ea-9fd4-e7c02792c50c.png

解決策

outlineWidth: 0 を指定すれば解決するがアプリだと落ちてしまうので以下の指定をすると良い

<TextInput
  style={{
    width: '100%',
    ...Platform.select({
      web: {
        outlineWidth: 0
      }
    })
  }}
/>
2
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
2
0