Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.1k views
in Technique[技术] by (71.8m points)

dart - Flutter: Is it possible to click through a PageView?

Trying to make widgets behind a PageView clickable by wrapping it around a GestureDetector but it doesn't work. Is there another way I can do this?

new GestureDetector(
  behavior: HitTestBehavior.translucent,
  child: new PageView(
    controller: _pageController,
    children: _buildForegroundPages(),
  ),
),
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try using the IgnorePointer class: https://docs.flutter.io/flutter/widgets/IgnorePointer-class.html

A widget that is invisible during hit testing.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...