2
2

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 5 years have passed since last update.

React Native の Text が上下の中央よりもズレて表示されてしまう問題

Posted at

問題

Text にこのような style をあてると、Android で日本語フォントが切れて表示されてしまう。

fontSize: 12,
lineHeight: 12,

(この場合、Text のコンテナの高さも 12 にしたかった。)

image.png

解決

fontSize: 12,
height: 12,
includeFontPadding: false,
textAlignVertical: 'center',

2
2
1

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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?