Conversation
…ll-screen and edge support
…ons in pure widgets
…erPageRoute and PageTraceRoute
… when argument is not found
3d24rd0
marked this pull request as draft
September 18, 2026 07:16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary of Changes
1. Modern & Synchronized Pop Gestures
CupertinoBackGestureDetector: Implemented a purewidgets.dartgesture detector with fullNavigatorState.didStartUserGesture()andNavigatorState.didStopUserGesture()synchronization.backGestureWidthandpopClosePercentagetoPageTraceRouteandTraceRoute.page. Allows full-screen back swipe (backGestureWidth: null) or edge-only gesture (backGestureWidth: 20.0) to avoid conflicting with horizontalPageView, sliders, or carousels.2. Modern Transitions in Pure
widgets.dartRouteTransition.zoom): Implemented Android 10+ / Material 3 style zoom and fade transition (incoming scale 0.85 -> 1.0 + fade in; outgoing scale 1.0 -> 1.08 + fade out).RouteTransition.adaptive): Adaptively resolves to native transitions depending on the target platform:SlideBuildTransition(Slide with parallax, edge shadow, and interactive gesture).ZoomBuildTransition(Material 3 Zoom & Fade).FadeBuildTransition(Clean fade for desktop & SPA web).Slide): Removed card corner deformation (BorderRadius.circular(60)), added vertical leading edge shadow, and secondary route scrim barrier darkening for realistic depth.3. Argument Safety & Stability
getAndCleanto avoid unnecessary map mutations when the requested argument is not present.4. Tests & Quality
CupertinoBackGestureDetector(test/cupertino_back_gesture_test.dart) and all transition widgets (test/transitions_test.dart).coolint: ^3.0.0-rc.1).dart pub publish --dry-run.0.2.0and updatedCHANGELOG.mdandREADME.md.