How to use Awesome font?

On this Redirecting... page, I found some icons, but I use “<FontAwesome name={‘compass’} size={25} />” can not show it? why?

Can’t really provide any assistance without knowing what error you’re getting and seeing some code. :confused:

You can use them like this:

import { Ionicons, FontAwesome } from '@expo/vector-icons';

<FontAwesome name="calendar" size={25} style={{ color: 'red' }} />
<Ionicons  name="ios-football"  size={50} />

2 Likes

Thank you. I got it.

1 Like