Disable font sacle on React Native
whck6
必須在 class 裡面
export default class App extends Component {
constructor() {
super();
Text.defaultProps.allowFontScaling = false;
TextInput.defaultProps.allowFontScaling = false;
}
}whck6
必須在 class 裡面
export default class App extends Component {
constructor() {
super();
Text.defaultProps.allowFontScaling = false;
TextInput.defaultProps.allowFontScaling = false;
}
}