-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App should have a Splash Screen #175
Comments
On 20 Mar 2017, at 11:59, Anant Singh wrote:
The app should have a splash screen to appear while opening it, in
place of a blank white screen which currently appears.
I am not convinced. See
https://cyrilmottier.com/2012/05/03/splash-screens-are-evil-dont-use-them/
Better work on accelerating the startup until the point where the real
UI is shown.
|
@pilhuhn |
@pilhuhn Splash screen is there to give the user immediate feedback that the app has started and is loading. Even google has it in there material design doc - https://material.io/guidelines/patterns/launch-screens.html#launch-screens-branded-launch @free4murad app start time depends on the api fetch time and internet connectivity (speed), unless we store previous data in the cache (which increases app size) that we can show at the loading time. |
@anant-dev I think we should try to reduce the reduce the app launch time, if that fails then add a SplashScreen. (Just an opinion.) |
Do we load anything before user login? If not. -1 for that |
@anant-dev If we only show the UI after fetching some remote data, then we need to fix this. Show the UI and then inside the UI have a load indicator that tells what the system is doing. |
@pilhuhn this is the correct solution to avoid splash screen 👍 |
Closing it on ref of #179 |
The app should have a splash screen to appear while opening it, in place of a blank white screen which currently appears.
The text was updated successfully, but these errors were encountered: