美文网首页
Flutter GestureDetector 点击空白区域无反

Flutter GestureDetector 点击空白区域无反

作者: DerekTime | 来源:发表于2020-04-10 16:47 被阅读0次

    原文:https://www.jianshu.com/p/690e4bed5fd8

    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/lvzrmhtx.html