Flutter Wrap 小部件问题 - 容器小部件中的间距不起作用
我的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Wrap(spacing: 32, ...
应该可以工作,如果不行,则其他内容可能不正确。尽管您可以在中使用
,如下所示:margin
属性Container这应该在每个容器周围创建一些空白区域。
Wrap(spacing: 32, ...
should work, if it doesn't, something else might be incorrect. Although you could just usemargin
property in yourContainer
, like this:This should create some blank space around each container.