This repository was archived by the owner on Nov 24, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 134
Allow to await for the dialog show #38
Comments
good idea, but call funciton require async. |
Yeah sure, it is the main point of doing it. |
Until this issue is resolved, you can use |
Could we get a new release with the fixed version? By the way (for the impatient), a workaround until then:
|
Update v1.2.1 is live, please checkout |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Problem statement
I use the progress dialog to keep the user informed of a blocking operation.
So the progress dialog must be showed and hidden after an operation, but if the operation is async but terminates very quickly, the dialog is not hidden, because the
showDialog
method (used internally in the.show()
) does not have finished showing the dialog.Describe the solution you'd like
I would like to be allow to await the
.show()
method, like thisThe text was updated successfully, but these errors were encountered: