React Native fixed footer

后端 未结 20 1568
南旧
南旧 2020-12-22 16:57

I try to create react native app that looks like existing web app. I have a fixed footer at bottom of window. Do anyone have idea how this can be achieved with react native?

20条回答
  •  醉酒成梦
    2020-12-22 17:21

    The way I did this was to have a view (lets call it P) with flex 1, then inside that view have 2 more views (C1 and C2) with flex 0.9 and 0.1 respectively (you can change the flex heights to required values). Then, inside the C1 have a scrollview. This worked perfectly for me. Example below.

    
        
            
                scrollable section
            
        
        
            fixed footer
        
    
    

提交回复
热议问题