100% width in React Native Flexbox

后端 未结 10 888
日久生厌
日久生厌 2020-12-12 11:51

I have already read several flexbox tutorial, but I still cannot make this simple task to work.

How can I make the red box to 100% width?

Code:

10条回答
  •  时光说笑
    2020-12-12 12:52

    Here you go:

    Just change the line1 style as per below:

    line1: {
        backgroundColor: '#FDD7E4',
        width:'100%',
        alignSelf:'center'
    }
    

提交回复
热议问题