You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apart from #26, when calling show() consecutively without dismiss(), e.g. showing "Updating database..." and if the result immediately returned to show "Database updated!", due to the way SnackbarManager works, it can trigger the callback differently than expected. Typically the call will be:
snackProgressBar1.show()
snackProgressBar2.show()
snackProgressBar1.onDismissed() // Due to snackProgressBar1 immediately dismissed before showing
snackProgressBar1.onShown()
snackProgressBar2.onShown()
This can mess up user operation if there are operations pending in the callback.
The text was updated successfully, but these errors were encountered:
Apart from #26, when calling show() consecutively without dismiss(), e.g. showing "Updating database..." and if the result immediately returned to show "Database updated!", due to the way
SnackbarManager
works, it can trigger the callback differently than expected. Typically the call will be:This can mess up user operation if there are operations pending in the callback.
The text was updated successfully, but these errors were encountered: