gpt4 book ai didi

flutter - 我怎样才能将容器向右移动

转载 作者:IT王子 更新时间:2023-10-29 07:18:41 26 4
gpt4 key购买 nike

如何将容器向右移动。我有 3 个图标,我需要将最后一个图标移到右侧,以便其他 2 个图标在左侧

我正在为 Flutter 编写应用程序 example a post from my app

Row(
children: <Widget>[
Container(
margin: EdgeInsets.only(right: 10),
child: Row(
children: <Widget>[
Icon(Icons.insert_emoticon),
Text(memes.graphql.hashtag.edgeHashtagToMedia.edges[value].node.edgeLikedBy.count.toString()),
],
),
),
Icon(Icons.comment),
Text(memes.graphql.hashtag.edgeHashtagToMedia.edges[value].node.edgeMediaToComment.count.toString()),
Container(
margin: EdgeInsets.only(left: 230),
child: Icon(Icons.thumb_up),
)
],
),

最佳答案

只需使用 - Spacer() 小部件来填充中间的空间。

Row(
children: <Widget>[
Container(
margin: EdgeInsets.only(right: 10),
child: Row(
children: <Widget>[
Icon(Icons.insert_emoticon),
Text('10'),
Text(memes.graphql.hashtag.edgeHashtagToMedia.edges[value]
.node.edgeLikedBy.count
.toString()),
],
),
),
Icon(Icons.comment),
Text(memes.graphql.hashtag.edgeHashtagToMedia.edges[value].node
.edgeMediaToComment.count
.toString()),
Spacer(), // Add this
Container(
margin: EdgeInsets.only(left: 230),
child: Icon(Icons.thumb_up),
)
],
),

关于flutter - 我怎样才能将容器向右移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56473314/

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