I want to show fontAwesome icons in my app.
I can show with string type icons like this:
<Text style={{fontFamily: 'fontAwesome'}}></Text>
print icon. Working well.
But I need to show icons with variable like this:
let icon2 = "";
<Text style={{fontFamily: 'fontAwesome'}}>{icon}</Text>
then print to screen 
not icon.
I share with you expo snack link. You can try this easily.