gpt4 book ai didi

dart - 如何使用 Positioned 小部件定位在堆栈的右上角

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

我想将我的对象放在堆栈的右上角。这就是我所拥有的。我知道如果我将 all(LTRB) 设置为 0.0,图像将放置在中心。有没有更简单的方法让我把图片放在右上角?

Widget _buildRemoveIcon()
{
return Positioned(
top:0.0,
left:60.0,
right: 0.0,
bottom:0.0,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: new IconButton(
icon: Icon(
Icons.cancel,
color: Colors.red,
),
onPressed: () {
}), //
),
);
}

最佳答案

只需从 Positioned 小部件中删除 leftbottom 参数即可将小部件对齐到右上角。

例子:

Positioned(
top:0.0,
right: 0.0,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: new IconButton(
icon: Icon(Icons.cancel,color: Colors.red,),
onPressed: () {}),
),
)

enter image description here

关于dart - 如何使用 Positioned 小部件定位在堆栈的右上角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54393569/

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