无论我做什么,我都没有改变按钮的位置

问题描述 投票:0回答:1

flutter 我尝试移动下面的按钮,但没有用。你能帮助我吗?这些是按钮的代码: 升高的按钮( onPressed: () {}, 孩子:const Text(“确认”), 样式:ElevatedButton.styleFrom( 背景颜色: Color.fromARGB(255, 10, 73, 133), 前景颜色: Color.fromARGB(255, 255, 255, 255), ), ),

这是按钮的代码在此输入图像描述

visual-studio-code button location
1个回答
0
投票

我在互联网Container上找到了解决方案( 边距:EdgeInsets.对称(垂直:365), 对齐:对齐(0,-1), 子:ElevatedButton( onPressed: () {}, 孩子:const Text(“确认”), 样式:ElevatedButton.styleFrom( 背景颜色: Color.fromARGB(255, 10, 73, 133), 前景颜色: Color.fromARGB(255, 255, 255, 255), ), ), ),
我添加了边距:EdgeInsets.symmetry(vertical: 365),并得到了下面的按钮代码。

© www.soinside.com 2019 - 2024. All rights reserved.