Qt 6.11 is out! See what's new in the release
blog
Best approach in sequense of tasks for QML app?
QML and Qt Quick
3
Posts
2
Posters
2.1k
Views
1
Watching
-
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?