按钮: {position: 'fixed',bottom: 0;}
如果 按钮覆盖了容器的内容,容器加个padding-bottom就行了
容器: {padding-bottom: 100px;}
这样的话,按钮会固定在手机屏幕的底部,如果要居中的话要设置
按钮{
margin:auto;
left:0;
right:0;
}