markgravity / flutter-survey

3 stars 0 forks source link

[4] Create Landing screen #5

Closed markgravity closed 3 years ago

markgravity commented 3 years ago

https://github.com/markgravity/flutter-survey/issues/4

What happened

We need a landing screen to handle data, preload.. before the user can begin using the app

Insight

Proof Of Work

https://user-images.githubusercontent.com/17875522/114154522-b21ff300-994a-11eb-9f9a-f4e4b3cfbfb8.mov

sleepylee commented 3 years ago

hmmm...this is why I did not do the Splash screen. Technically, you can show this landing screen as a Splash, loading data in the background and show the next action. Having a splash, and doing the background request (i.e checking if logged-in, valid token etc...) is kinda redundant...we could do it while Splash is loading..

manh-t commented 3 years ago

the PoW cannot load, does it just happen on my side? 😥

markgravity commented 3 years ago

PoW

Yes, It works on my side 👍

sleepylee commented 3 years ago

pow doesn't work for me too 🙏
image

markgravity commented 3 years ago

pow doesn't work for me too 🙏 image

Screen Shot 2021-04-12 at 09 07 13

It's normal on my side 😢

markgravity commented 3 years ago

hmmm...this is why I did not do the Splash screen. Technically, you can show this landing screen as a Splash, loading data in the background and show the next action. Having a splash, and doing the background request (i.e checking if logged-in, valid token etc...) is kinda redundant...we could do it while Splash is loading..

.we could do it while Splash is loading..

What do you mean by Splash there? Is it a native Splash screen or Landing screen?

sleepylee commented 3 years ago

@markgravity in android usually we call the first screen show up immediately when launching an application is a Splash screen 😄 https://abhiandroid.com/programming/splashscreen

markgravity commented 3 years ago

@markgravity in android usually we call the first screen show up immediately when launching an application is a Splash screen 😄 https://abhiandroid.com/programming/splashscreen

Yea, I know that 😁 But I still got confused at this sentence 🤔

Having a splash, and doing the background request (i.e checking if logged-in, valid token etc...) is kinda redundant...we could do it while Splash is loading..