We have a financial app and the customer wants it to automatically logout and show the login screen after 20 minutes of inactivity.
In XForms, the **Device.StartTimer() **can't be stopped. Each page view for instance would need to stop the timer and restart it.
Is there a pattern that can be used to force the app to call App.MyNiceLogout() after 20 minutes of inactivity?
Ian