gpt4 book ai didi

具有可点击背景的 Flutter 叠加层

转载 作者:行者123 更新时间:2023-12-05 09:33:48 25 4
gpt4 key购买 nike

我正在尝试将小部件置于其他所有内容之上。

我有这个代码工作

PageRouteBuilder(
opaque: false,
barrierColor: Colors.transparent,
pageBuilder: (BuildContext context, __, _) {
return Align(
child: Container(
width: 500,
height: 500,
color: Colors.black,
),
); // Scaffold
},
),

问题是屏障不允许点击它后面的元素。我可以将 dismissable 设置为 true 或 false,但即使为 false 和 barrierColor: null,屏障后面的元素也不可点击。

我确定必须有一个合适的小部件,我添加了一个带有示例的图像,我需要单击 Button 1Button 2 等,当叠加层可见。

我不能使用堆栈

enter image description here

最佳答案

尝试用 IgnorePointer 包装 Align像这样的小部件。

return IgnorePointer(
child: Align(
child: Container(
width: 500,
height: 500,
),
),
);

关于具有可点击背景的 Flutter 叠加层,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67030713/

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