LoginSignup
7
1

More than 5 years have passed since last update.

React NativeでAndroidのPickerのfontSizeを変更する方法

Posted at

React NativeでPickerfontSizeを変更しようと思ったのですが、どうやらAndroid環境ではfontSizeに対応していないようです(つらい)

どうしても文字サイズを変更したい場合は、transformで大きくしてmarginなどで位置を調整する他ないようです。


styles.picker = {
  transform: [
     { scaleX: 1.5 }, 
     { scaleY: 1.5 },
  ]
}

何か良い方法が合ったらコメントなどで教えていただけるとありがたいです。

https://github.com/GeekyAnts/NativeBase/issues/415
https://stackoverflow.com/questions/39585253/how-to-give-fontsize-to-react-native-android-picker

7
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
7
1