100% width in React Native Flexbox

后端 未结 10 921
日久生厌
日久生厌 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

    Use javascript to get the width and height and add them in View's style. To get full width and height, use Dimensions.get('window').width https://facebook.github.io/react-native/docs/dimensions.html

    getSize() {
        return {
            width: Dimensions.get('window').width, 
            height: Dimensions.get('window').height
        }
    }
    

    and then,

    
    

提交回复
热议问题