Issue:
I have an app I am working on that has a glance view, and a regular view when you click on it. Currently when you enter the regular view and hit the back button it doesn't bring you back to the widgets list. See images below. It brings you back to a Connect IQ screen. I am not using any delegate for the onBack it is just the default behavior.
I tried adding a delegate that popped a view when the back button was pressed and it threw an error.
The code isn't anything too fancy, Here is the app startup code. it is pretty much the default widget code.
--- AppBase ---
// Return the initial view of your application here
function getInitialView() as Array<Views or InputDelegates>? {
return [ new $.testWidgetView(tracker)] as Array<Views or InputDelegates>;
}
function getGlanceView() as GlanceView {
return [new $.testWidgetGlanceView(tracker), null];
}
---
Regular View: After Back Is Pressed:

