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


はじめに

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

解決策

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

<TextInput
  style={{
    width: '100%',
    ...Platform.select({
      web: {
        outlineWidth: 0
      }
    })
  }}
/>