showing results for - "have flat list automatically wrap react native"
Paola
22 Feb 2018
1<FlatList
2    contentContainerStyle={{flexDirection : "row", flexWrap : "wrap"}} 
3    data={this.state.dataSource} renderItem={({item}) =>
4        <Button>
5            <Text>{item.key}</Text>
6        </Button>
7    }
8/>