I am currently developing a React Native application, and some of our users might have slight vision problems. We wish to prevent the setting "Display Size" in Android, as this makes our app unusable.
We solved the problem with the Font Size using the simple line:
Text.defaultProps.allowFontScaling=false;
Is there a similar solution to the Display Size setting?
Thanks in advance