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
leeyi
2024-01-10 13:35:08 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
6e11aca71d9a09f79c27d4134a14cf83ae3ec688
6e11aca7
1 parent
499b4a2b
The default behavior for Get.defaultDialog's onCancel method should be closeAllDialogs();
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
lib/get_navigation/src/extension_navigation.dart
lib/get_navigation/src/extension_navigation.dart
View file @
6e11aca
...
...
@@ -196,8 +196,11 @@ extension ExtensionDialog on GetInterface {
borderRadius:
BorderRadius
.
circular
(
radius
)),
),
onPressed:
()
{
onCancel
?.
call
();
back
();
if
(
onCancel
==
null
)
{
closeAllDialogs
();
}
else
{
onCancel
.
call
();
}
},
child:
Text
(
textCancel
??
"Cancel"
,
...
...
Please
register
or
login
to post a comment