我有以下代码

return SizedBox(
                        child: CircularProgressIndicator(valueColor: new AlwaysStoppedAnimation<Color>(Colors.pink)),
                        height: 20.0,
                        width: 20.0,
                      );
我想知道如何将其居中到屏幕的顶部中心。谢谢。

最佳答案

SizedBox包裹Container并将alignment属性设置为Alignment.topCenter。下面的工作代码:

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

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

希望这能回答您的问题。

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

10-13 05:19