Supporting Dynamic Type in React Native (iOS) -
does know how implement support dynamic type in react native?
ideally, listen when has changed size of system font, , perform type of callback.
or better, prevent font scaling being implemented @ on components.
well, turns out can apply:
allowfontscaling={false}
to prevent this.
this worked me:
<text allowfontscaling={false}>do not want font scale</text> 
Comments
Post a Comment