The following code can be found in this live example
I\'ve got the following react native element:
\'use strict\'; var React = require(\'react-nativ
This is a known bug. flexWrap: 'wrap' didn't work for me but this solution seems to work for most people
flexWrap: 'wrap'
Code
Some text
Styles
export default StyleSheet.create({ container: { width: 0, flexGrow: 1, flex: 1, } });