如果分辨率或设备不同,如何建立动态位置按钮

时间:2019-07-06 10:14:25

标签: flutter

我尝试使用Flutter创建应用程序,但是我对测试小型设备和大型设备承担了责任。我需要这个按钮始终像这样从enter image description here

1 个答案:

答案 0 :(得分:0)

new ConstrainedBox(
                    constraints:
                        const BoxConstraints(minWidth: double.infinity),
                    child: new RaisedButton(
                      child: new Text('Login'),
                      onPressed: _loginPressed,
                    )),