Yes
Yes
react-native -v: 0.43.4node -v: v6.11.2npm -v: 3.10.10yarn --version: 0.24.5Then, specify:
(Write your steps here:)
TextInput in the projectallowFontScaling={false} the componentText and placeholder size shouldn't be scaled when user set font size.


It does not work on iOS either
+1 on ios and android
any solution for this. I am having the same problem.
i have the same problem. since my galaxy s5 only have font size MEDIUM, i have to scroll inside textinput to see the placeholder. How to fix this.
Thanks..
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Maybe the issue has been fixed in a recent release, or perhaps it is not affecting a lot of people. If you think this issue should definitely remain open, please let us know why. Thank you for your contributions.
I have the same problem in android
This really is a problem in both ios and android.
I found the placeholder of text input component in Android not ignoring the device system font size. Even in the latest react-native 0.54 version, the issue still exist. I finally solved it by making a faked placeholder on top of the text input instead of using the placeholder props of text input.
Guys, I faced with the same problem. I created this lib for resolving this issue in my project. Maybe it will help you: https://github.com/NelGarbuzova/react-native-stylized-placeholder .
For placeholder fontSize change issue @NelGarbuzova 's solution works. To fix font changing while inputting text the workaround is to -
It will fix your fontSize and won't change because of system settings for both android and iOS. For this workaround don't set allowFontScaling to false.
For placeholder fontSize change issue @NelGarbuzova 's solution works. To fix font changing while inputting text the workaround is to -
- import PixelRatio from react-native
- In TextInput style set your fontSize to {intendedFontSize / PixelRatio.getFontScale()}
It will fix your fontSize and won't change because of system settings for both android and iOS. For this workaround don't set allowFontScaling to false.
This works for me on Android 99%, but still there is a noticeable flash of font size change (intended size -> smaller size -> intended size) when starting to input contents into empty TextInputs.
Most helpful comment
This really is a problem in both ios and android.