我在我的应用程序中使用了 React 本机快餐栏来显示后端响应。如果我增加设备字体大小,小吃店消息的字体大小也会增加。我想修复快餐栏文本的字体大小。这是我的代码。
import Snackbar from 'react-native-snackbar';
webServiceHelper.requestResetPassword(this.state.username, this.state.selectedLanguage)
.then(response => {
if (response.error == false) {
this.setState({
isLoading: false
}, () => {
setTimeout(() => {
Snackbar.show({
title: 'Incorrect Credentials',
duration: Snackbar.LENGTH_INDEFINITE,
backgroundColor: 'red',
action: {
title: 'Please check again',
onPress: () => this.props.navigation.navigate('Login'),
color: 'white',
},
})
}, 1000);
}
我使用下面的代码来固定<Text>
标签的字体大小。但它不适用于小吃店。
if (Text.defaultProps == null) Text.defaultProps = {};
Text.defaultProps.allowFontScaling = false;
有什么建议可以解决这个问题。