Best approach in sequense of tasks for QML app?
-
I wanted to ask for an advice on how to make it so that certain processes in the application where executed step by step.
For example:
- while SplashScreen is displayed I want geolocation code to check for users location (takes several seconds)
- as soon as the coordinates available - to forward them to reversegeocode service for obtaining the location city
- continue to load the application content based on city location.
Right now problem is - the code seems to be firing off alltogether at once...
would be good to hear best practicies re the above, maybe ready examples?TY in advance
-
Have you tried looking into using states?