如何在点击时在小部件周围添加突出显示叠加?
我正在使用 Flutter 开发简单的设计系统。我想在选择(单击)时突出显示一个小部件,如下图所示,按钮在单击时突出显示。它获得句柄和边框。
具有挑战性的部分:我不希望布局发生变化,因为单击时手柄和边框占用了额外的空间。我希望小部件、手柄和边框重叠,这样它就不会移动其他相邻小部件的位置。
选择后
I'm working on simple design system using Flutter. I want to highlight a widget upon selection (click), as you can see in the below images button get highlighted upon click. It gets handle and border.
Challenging part: I don't want layout getting changed as additional space taken by handle and border upon click. I want widget, handle and border are overlaid, so that it wouldn't shift the position of other neighbouring widgets.
And after selection
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于
Clip.none
的clipBehavior
,您还可以使用Stack
,并从Stack
中溢出。 。完整代码
只需将其复制粘贴到 DartPad 中即可查看其实际效果。
You could also use a
Stack
with the overlay bleeding out of theStack
thanks to aclipBehavior
ofClip.none
.Full code
Just copy paste it in a DartPad to see it in action.