有人试图使用react-native-icons?我按照以下步骤操作:
我的代码
var React = require('react-native');
var Icon = require('FAKIconImage');
var { AppRegistry, StyleSheet, Text, View} = React;
class BringgersApp extends React.Component {
constructor(props) {
super(props);
}
render() {
return(
<View style={styles.container}>
<Text style={styles.welcome}>
Welcome to Bringgers!
</Text>
<Icon
name='ion|beer'
size={150}
color='#887700'
style={styles.beer} />
</View>
)
}
}
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
welcome: {
fontSize: 20,
textAlign: 'center',
margin: 10,
},
instructions: {
textAlign: 'center',
color: '#333333',
marginBottom: 5,
},
});
React.AppRegistry.registerComponent('BringgersApp', function() { return BringgersApp });
在我建立之后,他说文件不存在......
Font file doesn't exist
我清理DerivedData并尝试多次构建,但不起作用。
答案 0 :(得分:13)
在 react-native 中安装和使用 Ionicons , FontAwesome 和 Entypo 字体图标的步骤强>
首先,您需要使用以下命令进行安装。
react-native install react-native-vector-icons
然后需要链接:
react-native link react-native-vector-icons
将字体包文件导入您的页面:
import Ionicons from 'react-native-vector-icons/Ionicons';
import FontAwesome from 'react-native-vector-icons/FontAwesome';
import Entypo from 'react-native-vector-icons/Entypo';
用法示例:
<View>
<Text>Ionicons Icons</Text>
<Icon name='md-bicycle' />
<Text>FontAwesome Icons</Text>
<FontAwesome name='trophy' />
<Text>Entypo Icons</Text>
<Entypo name='aircraft' />
</View>
如果要查看可用图标列表,可以查看以下目录:
Ionicons:
\node_modules\react-native-vector-icons\glyphmaps\Ionicons.json
FontAwesome:
\node_modules\react-native-vector-icons\glyphmaps\FontAwesome.json
Entypo:
\node_modules\react-native-vector-icons\glyphmaps\Entypo.json
给你我的应用截图。
答案 1 :(得分:11)
首先,
react-native-icons
的维护者自己指向更新的&amp;保持react-native-vector-icons 换句话说,你的生活就像打字一样简单
react-native install react-native-vector-icons
react-native link react-native-vector-icons
你可能会很高兴*)
*)至少它在我的机器上运行
答案 2 :(得分:1)
答案 3 :(得分:1)
因此,在我的项目中,我通过以下代码访问了图标:let { Icon, } = require('react-native-icons');
虽然我从未遇到使用FontAwesome图标的问题,但我在使用Material Icons时遇到了问题。您还可以查看react-native-vector-icons
。
答案 4 :(得分:1)
使用React Native Package Manager:https://github.com/rnpm/rnpm
$ npm install rnpm -g 运行
安装依赖项:
如果要安装依赖项并在一次运行中链接它:
$ rnpm install react-native-icons 链接依赖:
如果您已经安装了一些(但未链接)模块,请运行:
$ rnpm link
答案 5 :(得分:0)
试
rnpm link // If you installed module
另外
npm install module-name
并执行后
rnpm link
重启服务..
此代码重新链接自动模块。
给我工作。感谢。
答案 6 :(得分:0)
您也可以尝试使用本机库。 它提供标签 使用任何可用于移动设备的图标都很简单。
有关本机基本图标的详细信息,请点击此链接。 http://nativebase.io/docs/v2.0.0/components#icon
点击此链接,了解有关图标列表的更多信息。 https://ionicframework.com/docs/v2/ionicons/
离。
<Icon name='ios-list' style={style.icon} />
答案 7 :(得分:0)
第1步:安装react-native-elements
yarn add react-native-elements
# or with npm
npm i react-native-elements --save
第2步:安装react-native-vector-icons
如果您已经安装了react-native-vector-icons作为项目的依赖项,则可以跳过此步骤。否则运行以下命令:
# yarn
yarn add react-native-vector-icons
# or with npm
npm i --save react-native-vector-icons
# link
react-native link react-native-vector-icons
之后只需在您的项目中使用它们,如
import { Icon } from 'react-native-elements';
class IonBeer extends React.Component {
render() {
return (
<Icon
name='md-beer'
type='ionicon'
color='#887700'
size=150
/>
);
}
}
然后简单地使用它。
<IonBeer/>
任何你想要的地方
答案 8 :(得分:-2)
对于Icon,您可以使用react-native矢量图标。它包含各种图标,我们可以在您的项目中使用它以获得原生外观。
了解更多内容,您可以查看https://github.com/oblador/react-native-vector-icons。
对于更多的本机组件,您可以查看nativebase.io。它是一个非常棒的UI本地反应库。