I create a 2 columns FLatlist in react-native-android
1 | 2
------------
3 | 4
I want this
2 | 1
4 | 3
I try these:
<View style={{flex:1,flexDirection:'row-reverse'}}>
<FlatList
style={{flex:1,flexDirection:'row-reverse'}}
and in render item I use flexDirection:'row-reverse'
too
but no success!