7 lines
240 B
JavaScript
7 lines
240 B
JavaScript
import {Text, TextInput} from 'react-native';
|
|
|
|
Text.defaultProps = Text.defaultProps || {};
|
|
Text.defaultProps.allowFontScaling = false;
|
|
TextInput.defaultProps = TextInput.defaultProps || {};
|
|
TextInput.defaultProps.allowFontScaling = false;
|