Flutter Wrap 小部件问题 - 容器小部件中的间距不起作用

发布于 2025-01-20 10:10:58 字数 355 浏览 0 评论 0原文

我的Flutter应用程序现在很懒惰,所以这是图纸:

我当前的三个容器是这样: 当前容器

我想将其隔开类似的容器: 所需的容器

我试图在体内使用这样的包装。

正文:包裹(间距:32,...

但它不起作用。任何解决方案都可以帮助

My Flutter App is laggy right now so here's the drawing:

My current three container is like this:
Current Container

I wanted to spacing the containers like this:
Desired Container

I tried to use Wrap like this in the body.

body:Wrap(Spacing:32, ...

but it's not working. any solution may help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2025-01-27 10:10:58

Wrap(spacing: 32, ... 应该可以工作,如果不行,则其他内容可能不正确。尽管您可以在 中使用 margin 属性Container,如下所示:

Container(
    margin: EdgeInsets.symmetric(vertical: 16, horizontal: 32),
    ....

这应该在每个容器周围创建一些空白区域。

Wrap(spacing: 32, ... should work, if it doesn't, something else might be incorrect. Although you could just use margin property in your Container, like this:

Container(
    margin: EdgeInsets.symmetric(vertical: 16, horizontal: 32),
    ....

This should create some blank space around each container.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文