Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
modal_bottom_sheet
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
Jaime Blasco
2022-03-09 10:14:37 +0100
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f02c51fba976fbb4ab0d8b730ad5b31569087ef0
f02c51fb
1 parent
ab1dc56e
fix: will pop scope on drag end
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/src/bottom_sheet.dart
lib/src/bottom_sheet.dart
View file @
f02c51f
...
...
@@ -232,7 +232,7 @@ class _ModalBottomSheetState extends State<ModalBottomSheet>
_bounceDragController
.
reverse
();
var
canClose
=
true
;
if
(
widget
.
shouldClose
!=
null
&&
hasReachedWillPopThreshold
)
{
if
(
widget
.
shouldClose
!=
null
)
{
_cancelClose
();
canClose
=
await
shouldClose
();
}
...
...
Please
register
or
login
to post a comment