I am struggling to use the fontAwesome + icon in the middle of a circle as one item. I have tried placing it inside a circle icon, but it doesn't seem to work properly.
import IconFA from 'react-native-vector-icons/FontAwesome';
<IconFA
name="plus"
size={moderateScale(30)}
color="black"
style={styles.thumbnail}
/>
thumbnail: {
height: 68,
width: 68,
position: 'relative',
},
I have also looked into using 'stacked' font awesome icons in react native, but I couldn't figure out how to implement it.
If anyone has any insights or solutions, please let me know.
Reference: https://jsfiddle.net/1d7fvLy5/1/
Snack Expo:
I am aiming to create something similar to this design:
https://i.sstatic.net/2elh1.png
If there are any free icon resources or alternatives like using a <Thumbnail>
, feel free to share them with me as well.