React native text going off my screen, refusing to wrap. What to do?

后端 未结 11 1572
栀梦
栀梦 2020-11-30 18:35

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         


        
11条回答
  •  没有蜡笔的小新
    2020-11-30 19:36

    This is a known bug. flexWrap: 'wrap' didn't work for me but this solution seems to work for most people

    Code

    
        Some text
    
    

    Styles

    export default StyleSheet.create({
        container: {
            width: 0,
            flexGrow: 1,
            flex: 1,
        }
    });
    

提交回复
热议问题