You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementing a back action should be pretty straight-forward.
According to the actual style of this plugin I would go for something like this:
in wizViewManager.js:
View.prototype.goBack=function(success,failure){cordova.exec(success,failure,"WizViewManagerPlugin","goBack",[this.name]);};WizViewManager.prototype.goBack=function(name,success,failure){if(!this.views[name]){returnthis.throwError(failure,newError('Show Error with view name: '+name+'. View does not exist'));}this.views[name].goBack(success,failure);};
⚠️ I wrote this quickly so you will probably have to adapt/correct it and clean it a bit in order to make it works.
Feel free to comment here if you have any difficulty implementing it.
Once it's done and tested, it would be really nice if you could make a PR with this feature.
Hi.
How can I implement a go back action on iOS? I've an wizViewManager with a site but when I click a link then i can't go back.
Thanks.
The text was updated successfully, but these errors were encountered: