首页 > 其他 > 详细

Flutter GestureDetector 点击空白无效果 失效

时间:2020-06-24 21:56:31      阅读:108      评论:0      收藏:0      [点我收藏+]

这是和GestureDetector 中的一个属性有关。

GestureDetector(
              behavior: HitTestBehavior.opaque,
)

/// How to behave during hit tests. enum HitTestBehavior { /// Targets that defer to their children receive events within their bounds /// only if one of their children is hit by the hit test. deferToChild, /// Opaque targets can be hit by hit tests, causing them to both receive /// events within their bounds and prevent targets visually behind them from /// also receiving events. opaque, /// Translucent targets both receive events within their bounds and permit /// targets visually behind them to also receive events. translucent, }

加入以上代码即可

Flutter GestureDetector 点击空白无效果 失效

原文:https://www.cnblogs.com/xiaochii/p/13189954.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!