What is the best way to vertically align a big Icon with text?
Yes, just use wrapper View and use flexbox to vertically align the children.
thank you very much!
@perrosnk are you able to give some sample code of how you achieved this? I'm struggling a little with flexbox at the moment. Thanks.
<View style={{flexGrow: 1, justifyContent:'center' alignItems: 'center'}}>
<Icon />
</View>
@MrHubble Hope it helps!
Forgot a comma:
<View style={{flexGrow: 1, justifyContent:'center', alignItems: 'center'}}>
<Icon />
</View>
Most helpful comment
@MrHubble Hope it helps!