fix: replace global GestureDetector with Listener to resolve touch in…#1043
fix: replace global GestureDetector with Listener to resolve touch in…#1043vibhutomer wants to merge 1 commit into
Conversation
…terference Signed-off-by: vibhutomer <vibhutomer25@gmail.com>
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Description
This PR addresses a subtle but impactful UI performance issue caused by the
InactivityTracker.Previously, the app was wrapped in a top-level
GestureDetector. BecauseGestureDetectorparticipates in Flutter's Gesture Arena, it actively competed with child widgets (scroll views, buttons, sliders) for touch events, which can lead to dropped inputs and scroll stuttering.Changes Made
GestureDetectorwithListenerininactivity_tracker.dart.onPointerDown,onPointerMove).Listenerdoes not enter the Gesture Arena, the app can now silently track inactivity without interfering with standard UI interactions.Related Issue
Closes #1042
Type of Change
Checklist