Make an item stick to the bottom using flex in react-native

前端 未结 13 2293
别跟我提以往
别跟我提以往 2020-12-13 23:37

Suppose this is the layout:


    
        ...
        ...
    
             


        
13条回答
  •  北海茫月
    2020-12-14 00:17

    for me the answer was to create a container view for the elements, then for the style.

    bottomContainer: {
        flex: 1,
        justifyContent: 'flex-end',
    }
    

提交回复
热议问题