Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
wowbox
2024-03-08 04:58:23 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
becb2416c48cec07963b2b4b233e87c78dce8832
becb2416
1 parent
3de0bd3c
fix: PopScope swipe back
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
lib/get_navigation/src/routes/get_transition_mixin.dart
lib/get_navigation/src/routes/get_transition_mixin.dart
View file @
becb241
...
...
@@ -780,6 +780,8 @@ Cannot read the previousTitle for a route that has not yet been installed''',
// If attempts to dismiss this route might be vetoed such as in a page
// with forms, then do not allow the user to dismiss the route with a swipe.
if
(
route
.
hasScopedWillPopCallback
)
return
false
;
// support [PopScope]
if
(
route
.
popDisposition
==
RoutePopDisposition
.
doNotPop
)
return
false
;
// Fullscreen dialogs aren't dismissible by back swipe.
if
(
route
.
fullscreenDialog
)
return
false
;
// If we're in an animation already, we cannot be manually swiped.
...
...
Please
register
or
login
to post a comment