I want to make a layout as follows:
<ScrollView style={{flexDirection:'row'}]>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
<View style={{flex:1}}></View>
</ScrollView>
So that every 3 View, the others come down. However, the system prints 7 columns.
How to do it?