gpt4 book ai didi

dart - 在 flutter 中在图标上写文字

转载 作者:IT王子 更新时间:2023-10-29 06:48:48 24 4
gpt4 key购买 nike

enter image description here

我正在使用这段代码:如何在 flutter 中设置这种布局

Container(
height: 200.0,
decoration: new BoxDecoration(
color: Colors.white,
shape: BoxShape.circle,
),
child: Center(
child: Stack(
children: <Widget>[
Icon(Icons.play_arrow, color: Colors.blue, size: 200.0,)
],
),
),

);

最佳答案

试试这个,你只需要让 Stack 居中对齐并在 Stack 数组中添加一个 Text

Container(
height: 200.0,
decoration: new BoxDecoration(
color: Colors.white,
shape: BoxShape.circle,
),
child: Center(
child: Stack(
alignment: Alignment.center,
children: <Widget>[
Icon(
Icons.play_arrow,
color: Colors.blue,
size: 200.0,
),
Text(
"Play",
style: TextStyle(fontSize: 18,color: Colors.white),
),
],
),
),
)

关于dart - 在 flutter 中在图标上写文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54944793/

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