gpt4 book ai didi

android - Flutter/Dart如何将sizedbox居中到屏幕的顶部中心?

转载 作者:行者123 更新时间:2023-12-03 03:37:09 29 4
gpt4 key购买 nike

我让他遵循代码

return SizedBox(
child: CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.pink)),
height: 20.0,
width: 20.0,
);

我想知道如何将它放在屏幕的顶部中心。谢谢你。

最佳答案

包裹 SizedBoxContainer并设置alignment属性(property)给 Alignment.topCenter .下面的工作代码:

body: Container(
alignment: Alignment.topCenter,
child: SizedBox(
child: CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.pink)),
height: 20.0,
width: 20.0,
)),

enter image description here

希望这能回答你的问题。

关于android - Flutter/Dart如何将sizedbox居中到屏幕的顶部中心?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60106049/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com