无法识别的字体系列 'anticon'
Unrecognized font family 'anticon'
我一直在根据 YouTube 教程进行编码,并且 运行 进入了此错误消息。我安装了正确的导入语句和正确的依赖项,所以我不确定问题出在哪里。
iOS模拟器中的错误信息:
我在以下位置调用 Anticon 的组件:
import React from 'react';
import {View, TextInput, StyleSheet} from 'react-native';
import {windowHeight, windowWidth} from '../utils/Dimensions';
import AntDesign from 'react-native-vector-icons/AntDesign';
const FormInput = ({labelValue, placeholderText, iconType, ...rest}) => {
return (
<View style={styles.inputContainer}>
<View style={styles.iconStyle}>
<AntDesign name={iconType} size={25} color="#666" />
</View>
<TextInput
value={labelValue}
style={styles.input}
numberOfLines={1}
placeholder={placeholderText}
placeholderTextColor="#666"
{...rest}
/>
</View>
);
};
export default FormInput;
const styles = StyleSheet.create({
inputContainer: {
marginTop: 5,
marginBottom: 10,
width: '100%',
height: windowHeight / 15,
borderColor: '#ccc',
borderRadius: 3,
borderWidth: 1,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#fff',
},
iconStyle: {
padding: 10,
height: '100%',
justifyContent: 'center',
alignItems: 'center',
borderRightColor: '#ccc',
borderRightWidth: 1,
width: 50,
},
input: {
padding: 10,
flex: 1,
fontSize: 16,
fontFamily: 'Lato-Regular',
color: '#333',
justifyContent: 'center',
alignItems: 'center',
},
inputField: {
padding: 10,
marginTop: 5,
marginBottom: 10,
width: windowWidth / 1.5,
height: windowHeight / 15,
fontSize: 16,
borderRadius: 8,
borderWidth: 1,
},
});
我正在尝试使用反图标的屏幕:
import React, {useContext, useState} from 'react';
import {
View,
Text,
TouchableOpacity,
Image,
Platform,
StyleSheet,
ScrollView,
} from 'react-native';
import FormInput from '../components/FormInput';
import FormButton from '../components/FormButton';
import SocialButton from '../components/SocialButton';
import {AuthContext} from '../navigation/AuthProvider';
import AntDesign from 'react-native-vector-icons/AntDesign';
const LoginScreen = ({navigation}) => {
const [email, setEmail] = useState();
const [password, setPassword] = useState();
const {login} = useContext(AuthContext);
return (
<ScrollView contentContainerStyle={styles.container}>
<Image
source={require('../assets/rn-social-logo.png')}
style={styles.logo}
/>
<Text style={styles.text}>RN Social App</Text>
<FormInput
labelValue={email}
onChangeText={userEmail => setEmail(userEmail)}
placeholderText="Email"
iconType="user"
keyboardType="email-address"
autoCapitalize="none"
autoCorrect={false}
/>
<FormInput
labelValue={password}
onChangeText={userPassword => setPassword(userPassword)}
placeholderText="Password"
iconType="lock"
secureTextEntry={true}
/>
<FormButton
buttonTitle="Sign In"
onPress={() => login(email, password)}
/>
<TouchableOpacity style={styles.forgotButton} onPress={() => {}}>
<Text style={styles.navButtonText}>Forgot Password?</Text>
</TouchableOpacity>
<View>
<SocialButton
buttonTitle="Sign In with Facebook"
btnType="facebook"
color="#4867aa"
backgroundColor="#e6eaf4"
onPress={() => {}}
/>
<SocialButton
buttonTitle="Sign In with Google"
btnType="google"
color="#de4d41"
backgroundColor="#f5e7ea"
onPress={() => {}}
/>
</View>
<TouchableOpacity
style={styles.forgotButton}
onPress={() => navigation.navigate('Signup')}>
<Text style={styles.navButtonText}>
Don't have an acount? Create here
</Text>
</TouchableOpacity>
</ScrollView>
);
};
export default LoginScreen;
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
padding: 20,
paddingTop: 50,
},
logo: {
height: 150,
width: 150,
resizeMode: 'cover',
},
text: {
fontSize: 28,
marginBottom: 10,
color: '#051d5f',
},
navButton: {
marginTop: 15,
},
forgotButton: {
marginVertical: 35,
},
navButtonText: {
fontSize: 18,
fontWeight: '500',
color: '#2e64e5',
},
});
我对anticon的依赖:
{
"name": "socialapp2",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@ant-design/icons": "4.0.0",
"@react-native-async-storage/async-storage": "npm:@react-native-community/async-storage",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-firebase/app": "^12.8.0",
"@react-native-firebase/auth": "^12.8.0",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-async-storage": "^0.0.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-onboarding-swiper": "^1.1.4",
"react-native-reanimated": "^2.2.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.7.2",
"react-native-vector-icons": "^8.1.0",
"react-navigation": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}
将此添加到 ios 目录中的 info.plist 文件中,不要忘记 pod install:
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Fontisto.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>Octicons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Zocial.ttf</string>
</array>
- 通过单击项目名称 => 添加文件 (fontname.ttf)
,将 ttf 文件添加到 ios
- 在 info.plist 中添加 fontname.ttf,其中包含所有矢量图标
这对我有用,希望对某人有所帮助...
import Icon from 'react-native-vector-icons/AntDesign';
Icon.loadFont().then();
...
<Icon name={iconName} color={color} size={size} />;
我一直在根据 YouTube 教程进行编码,并且 运行 进入了此错误消息。我安装了正确的导入语句和正确的依赖项,所以我不确定问题出在哪里。
iOS模拟器中的错误信息:
我在以下位置调用 Anticon 的组件:
import React from 'react';
import {View, TextInput, StyleSheet} from 'react-native';
import {windowHeight, windowWidth} from '../utils/Dimensions';
import AntDesign from 'react-native-vector-icons/AntDesign';
const FormInput = ({labelValue, placeholderText, iconType, ...rest}) => {
return (
<View style={styles.inputContainer}>
<View style={styles.iconStyle}>
<AntDesign name={iconType} size={25} color="#666" />
</View>
<TextInput
value={labelValue}
style={styles.input}
numberOfLines={1}
placeholder={placeholderText}
placeholderTextColor="#666"
{...rest}
/>
</View>
);
};
export default FormInput;
const styles = StyleSheet.create({
inputContainer: {
marginTop: 5,
marginBottom: 10,
width: '100%',
height: windowHeight / 15,
borderColor: '#ccc',
borderRadius: 3,
borderWidth: 1,
flexDirection: 'row',
alignItems: 'center',
backgroundColor: '#fff',
},
iconStyle: {
padding: 10,
height: '100%',
justifyContent: 'center',
alignItems: 'center',
borderRightColor: '#ccc',
borderRightWidth: 1,
width: 50,
},
input: {
padding: 10,
flex: 1,
fontSize: 16,
fontFamily: 'Lato-Regular',
color: '#333',
justifyContent: 'center',
alignItems: 'center',
},
inputField: {
padding: 10,
marginTop: 5,
marginBottom: 10,
width: windowWidth / 1.5,
height: windowHeight / 15,
fontSize: 16,
borderRadius: 8,
borderWidth: 1,
},
});
我正在尝试使用反图标的屏幕:
import React, {useContext, useState} from 'react';
import {
View,
Text,
TouchableOpacity,
Image,
Platform,
StyleSheet,
ScrollView,
} from 'react-native';
import FormInput from '../components/FormInput';
import FormButton from '../components/FormButton';
import SocialButton from '../components/SocialButton';
import {AuthContext} from '../navigation/AuthProvider';
import AntDesign from 'react-native-vector-icons/AntDesign';
const LoginScreen = ({navigation}) => {
const [email, setEmail] = useState();
const [password, setPassword] = useState();
const {login} = useContext(AuthContext);
return (
<ScrollView contentContainerStyle={styles.container}>
<Image
source={require('../assets/rn-social-logo.png')}
style={styles.logo}
/>
<Text style={styles.text}>RN Social App</Text>
<FormInput
labelValue={email}
onChangeText={userEmail => setEmail(userEmail)}
placeholderText="Email"
iconType="user"
keyboardType="email-address"
autoCapitalize="none"
autoCorrect={false}
/>
<FormInput
labelValue={password}
onChangeText={userPassword => setPassword(userPassword)}
placeholderText="Password"
iconType="lock"
secureTextEntry={true}
/>
<FormButton
buttonTitle="Sign In"
onPress={() => login(email, password)}
/>
<TouchableOpacity style={styles.forgotButton} onPress={() => {}}>
<Text style={styles.navButtonText}>Forgot Password?</Text>
</TouchableOpacity>
<View>
<SocialButton
buttonTitle="Sign In with Facebook"
btnType="facebook"
color="#4867aa"
backgroundColor="#e6eaf4"
onPress={() => {}}
/>
<SocialButton
buttonTitle="Sign In with Google"
btnType="google"
color="#de4d41"
backgroundColor="#f5e7ea"
onPress={() => {}}
/>
</View>
<TouchableOpacity
style={styles.forgotButton}
onPress={() => navigation.navigate('Signup')}>
<Text style={styles.navButtonText}>
Don't have an acount? Create here
</Text>
</TouchableOpacity>
</ScrollView>
);
};
export default LoginScreen;
const styles = StyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
padding: 20,
paddingTop: 50,
},
logo: {
height: 150,
width: 150,
resizeMode: 'cover',
},
text: {
fontSize: 28,
marginBottom: 10,
color: '#051d5f',
},
navButton: {
marginTop: 15,
},
forgotButton: {
marginVertical: 35,
},
navButtonText: {
fontSize: 18,
fontWeight: '500',
color: '#2e64e5',
},
});
我对anticon的依赖:
{
"name": "socialapp2",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint ."
},
"dependencies": {
"@ant-design/icons": "4.0.0",
"@react-native-async-storage/async-storage": "npm:@react-native-community/async-storage",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-firebase/app": "^12.8.0",
"@react-native-firebase/auth": "^12.8.0",
"@react-navigation/native": "^6.0.2",
"@react-navigation/stack": "^6.0.7",
"react": "17.0.2",
"react-native": "0.65.1",
"react-native-async-storage": "^0.0.1",
"react-native-gesture-handler": "^1.10.3",
"react-native-onboarding-swiper": "^1.1.4",
"react-native-reanimated": "^2.2.2",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "^3.7.2",
"react-native-vector-icons": "^8.1.0",
"react-navigation": "^4.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native"
}
}
将此添加到 ios 目录中的 info.plist 文件中,不要忘记 pod install:
<key>UIAppFonts</key>
<array>
<string>AntDesign.ttf</string>
<string>Entypo.ttf</string>
<string>EvilIcons.ttf</string>
<string>Feather.ttf</string>
<string>FontAwesome.ttf</string>
<string>FontAwesome5_Brands.ttf</string>
<string>FontAwesome5_Regular.ttf</string>
<string>FontAwesome5_Solid.ttf</string>
<string>Fontisto.ttf</string>
<string>Foundation.ttf</string>
<string>Ionicons.ttf</string>
<string>MaterialCommunityIcons.ttf</string>
<string>MaterialIcons.ttf</string>
<string>Octicons.ttf</string>
<string>SimpleLineIcons.ttf</string>
<string>Zocial.ttf</string>
</array>
- 通过单击项目名称 => 添加文件 (fontname.ttf) ,将 ttf 文件添加到 ios
- 在 info.plist 中添加 fontname.ttf,其中包含所有矢量图标
这对我有用,希望对某人有所帮助...
import Icon from 'react-native-vector-icons/AntDesign';
Icon.loadFont().then();
...
<Icon name={iconName} color={color} size={size} />;