Questions tagged [flutter-ignore-pointer]

5 questions
2
votes
1 answer

How to ignore click events on Slivers of CustomScrollView in Flutter?

I have a Stack widget as the body of the Scaffold and the stack has a CustomScrollView and some other widget behind the scroll view as its children. Scaffold( body: Stack( children: [ WidgetBehindTheScrollView(), CustomScrollView( …
rasitayaz
  • 400
  • 2
  • 16
1
vote
0 answers

How to capture the first gesture over a widget in Flutter

I'm developing a mobile app with Flutter using these two packages: sliding_up_panel and mapbox_gl. I would like when the user does any kind of gesture over the map, the sliding up panel closes and gives the user more space for using the map. It's…
1
vote
0 answers

Flutter Google Maps cannot drag the map with nested navigator

i am stuck about 6 days until now about how to drag the google maps using stack and nested navigator, below is the screenshot and code using navigator : Image Using Nested Navigator @override Widget build(BuildContext context) { return…
1
vote
1 answer

How can I ignore drag with IgnorePointer?

I know we can ignore pointer with the IgnorePointer widget, but how can I ignore just a specific event. for example, VerticalDrag or tap?
Hamed
  • 5,867
  • 4
  • 32
  • 56
0
votes
1 answer

Facing issue with IgnorePointer while using with Webview

I have a webview implemented in my flutter application which is wrapped by an Ignorepointer Widget. I am setting ignoring as true upon a condition to prevent touch events of webview. But it is not working as expected, I am able to touch webview even…