Flutter Button 不配合简单的代码
Flutter Button is not cooparates with simple code
我的目标是定义 ElevatedButton 的宽度,我试图将 Button 包含在 SizedBox 中,就像在 Container[ 中一样=18=],现在它在 ConstrainedBox 中,但它仍然无法正常工作,它在应用程序的整个长度上都被拉伸了,我希望他有 width: 100.0 提前致谢
ConstrainedBox(
constraints: const BoxConstraints.tightFor(
width: 60.0,
height: 60.0,
),
child: ElevatedButton(
child: const Text("Blabla"),
onPressed: () {
print("Yup");
},
),
),```
[1]: https://i.stack.imgur.com/wmgj5.png
使用Padding()
定义所需的宽度:
ElevatedButton(
onPressed: () {
print("Je suis une coquine");
},
child: Padding(
padding: const EdgeInsets.only(
left: 16.0, top: 4.0, right: 16.0, bottom: 4.0),
child: Text("blabla"),
),
)
我的目标是定义 ElevatedButton 的宽度,我试图将 Button 包含在 SizedBox 中,就像在 Container[ 中一样=18=],现在它在 ConstrainedBox 中,但它仍然无法正常工作,它在应用程序的整个长度上都被拉伸了,我希望他有 width: 100.0 提前致谢
ConstrainedBox(
constraints: const BoxConstraints.tightFor(
width: 60.0,
height: 60.0,
),
child: ElevatedButton(
child: const Text("Blabla"),
onPressed: () {
print("Yup");
},
),
),```
[1]: https://i.stack.imgur.com/wmgj5.png
使用Padding()
定义所需的宽度:
ElevatedButton(
onPressed: () {
print("Je suis une coquine");
},
child: Padding(
padding: const EdgeInsets.only(
left: 16.0, top: 4.0, right: 16.0, bottom: 4.0),
child: Text("blabla"),
),
)