I'm working on a right-to-left react native app and want to handle layout with direction: 'rtl' or direction: 'rtl'.
It works fine with ios but it doesn't work on Android for no reason.
An example code is :
<View style={{flexDirection: 'row', justifyContent: 'space-between', direction: 'rtl'}}>
<Text>
right content
</Text>
<Text>
left content
</Text>
</View>
Thanks.