gpt4 book ai didi

react-native - 如何在我的 react-native 应用程序中使用 fontawesome 灯图标?

转载 作者:行者123 更新时间:2023-12-05 08:07:40 25 4
gpt4 key购买 nike

我尝试在我的 react-native 应用程序中使用 Font Awesome Pro light icons。

我导入了必要的包并将库添加到我想使用的图标中。

import { library } from '@fortawesome/fontawesome-svg-core';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import {faIgloo} from '@fortawesome/fontawesome-pro';
...
//App.js
class App extends React.Component {
render() {
library.add(faIgloo);
return (
<View style={styles.container}>
<MainNavigator />
</View>
);
}
}


//Slides.js where I want to show icon.
...
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
...
renderSlides(){
return(
<View>
<FontAwesomeIcon icon="fa-igloo" />
</View>);
});
}

但问题是,图标的前缀是“fas”,意思是'solid'。如何将其更改为'light'

最佳答案

import FontAwesome5Pro from 'react-native-vector-icons/FontAwesome5Pro';

const icon = <FontAwesome5Pro name={'comments'} light />;

关于react-native - 如何在我的 react-native 应用程序中使用 fontawesome 灯图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54199586/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com