英文:
How to manage sorting of Wrap widget?
问题
我有a、b和c个小部件。
这些小部件的宽度都是100。
我用Wrap
小部件包装这些小部件,像这样:
Wrap(children: [a, b, c])
通常情况下,当屏幕宽度为200时,UI将显示这些小部件如下:
a b
c
但我想要:
a b
c
Wrap
小部件中是否有选项可以实现这个效果?
英文:
I have a, b, and c widgets.
These widgets have the same width as 100.
I wrap these widgets with the Wrap
widget like
Wrap(children: [a, b, c])
In general, when the screen width is 200, the UI will display these widgets like this.
a b
c
But I want
a b
c
Is there an option in the Wrap
widget to do this?
答案1
得分: 2
在您的 Wrap
小部件上设置 alignment
:
Wrap(
alignment: WrapAlignment.end,
children: [a, b, c],
)
英文:
Set alignment
on your Wrap
widget:
Wrap(
alignment: WrapAlignment.end,
children: [a, b, c],
)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论