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

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

Suppose this is the layout:


    
        ...
        ...
    
             


        
13条回答
  •  既然无缘
    2020-12-14 00:17

    Absolutely position is another way to fix footer, just like:

    footer: {
        position: 'absolute',
        height: 40,
        left: 0, 
        top: WINDOW_HEIGHT - 40, 
        width: WINDOW_WIDTH,
    }
    

提交回复
热议问题