Reputation: 227
Lets say my App can download images. I want that the downloaded image will be shown to the user after download has finished and the file has been written into the device.
With this line of code the image will be displayed on the screen.
window.open('file:///path_to_image', '_system', ' ');
The problem is, I have not a back button. Means if the image is shown I have no chance to go back into my app view. (Until I restart the app)
How did you solved this problem? Thanks.
Upvotes: 2
Views: 7373
Reputation: 2554
You can use FullScreenImage-Cordova-Plugin
Follow the git https://github.com/keensoft/FullScreenImage-Cordova-Plugin it will help you open the image in full screen natively, upon closing it will return the control to your app.
Upvotes: 1