How to Position a React Native Button at the bottom of my screen to work on multiple ios devices

前端 未结 3 1573
花落未央
花落未央 2021-02-05 07:59

I am young to react native search the web for tutorials that could help me with this problem but have not find anything. I know how to move the buttons from point A to B on my s

3条回答
  •  春和景丽
    2021-02-05 08:43

    You can use absolute position to put things wherever you want...

    submitButton: {
        position: 'absolute',
        bottom:0,
        left:0,
    }
    

    will put at bottom of screen, left side....

提交回复
热议问题