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
When calling loadingScreen.finish() with no arguments, the loading screen will always be visible for at least 1300 ms even if your application loads instantly. This makes your application feel slow when it's really not!
I don't think this warrants an issue, as the function has an immediately argument for a reason. There are comments in the function explaining why the argument is necessary.
I do however agree it's worthwhile spinning your own given the relative simplicity of the package.
When calling
loadingScreen.finish()
with no arguments, the loading screen will always be visible for at least 1300 ms even if your application loads instantly. This makes your application feel slow when it's really not!Reproduction
https://github.com/srmagura/please-wait-is-slow
Workaround
Call
finish(true)
to hide the loading screen as soon as possible.Recommended solution
Make your own loading screen. You really don't need a library for this. Here's mine if you need inspiration:
Then when your application finishes loading:
The text was updated successfully, but these errors were encountered: