Hi everybody,
I'm trying to create a confirmation menu that doesn't close the app when you press the back button during confirmation.
I tried popView(...) but it always closes my app.
So I tried that but nothing appends
function onResponse(response) {
if (response == WatchUi.CONFIRM_NO) {
WatchUi.pushView(new WorkView(), new WorkDelegate(true), WatchUi.SLIDE_UP);
return true;
}
Does anyone know why and how I should do this ?
Thanks