Published
- 1 min read
react native nested text vertical align
The solution for this is noted below
react native nested text vertical align
Solution
<Text>
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
<Text style={{ fontSize: 60 }}>Big Text</Text>
<Text style={{ fontSize: 20 }}>Small Text</Text>
</View>
</Text>
Try other methods by searching on the site. That is if this doesn’t work