如何删除列中的小部件之间的间隙?
我有一个列
,带有两个容器
s。没有填充物,没有边距。
尺寸完全合并在一起。
但是,我仍然在小部件之间得到了这个子像素差距。在模拟器和真实设备上可见。
我的代码下面:
Column(
children: [
SizedBox(
height: 57.0.h(context),
width: MediaQuery.of(context).size.width,
child: LayoutBuilder(
builder: (context, constraints) => Column( // the column I actually am worried about
children: [
Container(
margin: EdgeInsets.zero,
padding: EdgeInsets.zero,
height: constraints.maxHeight * .45,
color: Theme.of(context).primaryColor,
child: Row(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
// here's some code
],
),
),
Container(
margin: EdgeInsets.zero,
padding: EdgeInsets.zero,
height: constraints.maxHeight * .55,
color: Theme.of(context).primaryColor,
child: Row(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
// here's some code
],
),
),
],
),
),
),
Expanded(
child: PageView.builder(
// here's some code
),
),
],
),
我尝试将容器制作到以下
(因此要占用所有剩余空间),但没有任何更改。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题。将每个小部件包裹在所需颜色的0像素边框中的容器中,这是一个技巧:
由于抗降低的行为,该问题是在此github问题。
我认为这解决了问题,因为边框的颜色用于不与硬件像素对齐的抗体缩放边缘。但这只是我的理论。
I had the same problem. Wrapping each widget in a container with a 0-pixel border of the desired color did the trick:
The issue is propably caused because of the anti-aliasing behavior, as discussed in this GitHub issue.
I think this solves the problem because the color of the border is used for anti-aliasing edges that are not aligned with hardware pixels. But that's just my theory.
尝试添加
容器
'S装饰
具有零边框宽度。Try adding
Container
'sdecoration
with zero border width.