I am a beginner in Ionic 2 and I would like to know how you use Photoviewer functionnality from Ionic framework. (available here : official website)
It said :
Usage
import { PhotoViewer } from '@ionic-native/photo-viewer';
constructor(private photoViewer: PhotoViewer) { }
...
this.photoViewer.show('https://example.com/path/to/image.jpg');
this.photoViewer.show('https://example.com/path/to/image.jpg', 'My image title', {share: false});
But where do I need to put it ? in a function ? how the function will be called ?
Thank's for all.