In the app OnStart i have:
LoadData(Colitemtokeep, "Saveditemstokeep", true); If(!IsEmpty(Colitemtokeep), [Notify("You still have unsent Data. Remember to send then once you have an internet connection"), NotificationType.Error, 4000])
This pulls saved data into the collection and shows a warning if data was available that the user should have submitted this last go...
In the 'onvisible' i have:
If(!IsEmpty(Colitemtokeep), UpdateContext({popup: true}))
This does the same above but with a nice popup (visible).
If the user starts the app the onvisible dosn't work but if they go back to the home screen it works a treat 🙂
Any ideas how to get it to work on the first go?