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
Jonny Borges
2024-03-08 14:02:57 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2024-03-08 14:02:57 -0300
Commit
80ee8007000fbb937ed42791e7ef013aab87685f
80ee8007
2 parents
b8902cdb
becb2416
Merge pull request #3049 from songgnqing/master
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 @
80ee800
...
...
@@ -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