didStopUserGesture method
User gesture is no longer controlling the Navigator.
Paired with an earlier call to didStartUserGesture.
Implementation
@override
void didStopUserGesture() {
super.didStopUserGesture();
// Only log if navigation logging is enabled AND log level permits
if (ZenConfig.shouldLogNavigation) {
ZenLogger.logDebug('Navigation gesture stopped');
}
}