美文网首页Flutter
flutter笔记 --GestureDetector 点击空白

flutter笔记 --GestureDetector 点击空白

作者: blossom_6694 | 来源:发表于2019-09-28 14:47 被阅读0次

解决办法:

 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.haomeiwen.com/subject/kyimyctx.html