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
Yoo Seungsu
2023-10-30 16:42:29 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2f6add048e27162223939f6fe325451dd8aaaf3a
2f6add04
1 parent
f41fc874
Make cancelAllSnackbars async
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
lib/get_navigation/src/snackbar/snackbar_controller.dart
lib/get_navigation/src/snackbar/snackbar_controller.dart
View file @
2f6add0
...
...
@@ -347,8 +347,8 @@ class SnackbarController {
return
future
;
}
static
void
cancelAllSnackbars
()
{
_snackBarQueue
.
_cancelAllJobs
();
static
Future
<
void
>
cancelAllSnackbars
()
async
{
await
_snackBarQueue
.
_cancelAllJobs
();
}
static
Future
<
void
>
closeCurrentSnackbar
()
async
{
...
...
Please
register
or
login
to post a comment