React Native fixed footer

后端 未结 20 1605
南旧
南旧 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:29

    You get the Dimension first and then manipulate it through flex style

    var Dimensions = require('Dimensions')
    var {width, height} = Dimensions.get('window')
    

    In render

    
        main
        footer
    
    

    The other method is to use flex

    
        main
        footer
    
    

提交回复
热议问题