nativescript-photoviewer
nativescript-photoviewer copied to clipboard
A simple Photo-Viewer component for NativeScript.
Would be very appreciated if you could control the language in the plugin. For example "1 of 4 photos". Or is this possible already?
With Android Pie this plugin is effectively broken. When opening a gallery the photo is invisible until you try some zooming and panning at which point it shows up.
https://github.com/manijak/nativescript-photoviewer/blob/58f10d8a2b0f3565462590264259e61ea19ab01e/src/photoviewer.ios.ts#L146 This I believe needs the static added, for example: ``` @NativeClass() class PhotoViewerDelegateImpl extends NSObject implements NYTPhotosViewControllerDelegate { static ObjCProtocols = [NYTPhotosViewControllerDelegate]; // add this private _resolve: () =>...
I am using [this basic test project](https://github.com/NickIliev/NS-Issues-2018/tree/master/others/t_1163464) and on iOS emulator and device the loading time for a gallery with 4 images is approximately 10-15 seconds and during this time...
I have been using PhotoViewer on a new app. If I have up to 11 images all seems OK, but above 11 images the console says PhotoViewewer received the image...
Hello. Is it possible to remove the shadow on the border of the safe area of iOS devices? I'm using nativescript-vue.
To speed up loading the gallery effectively for multiple images. Alternatively, is there an existing image cache plug-in available that would work with photoviewer? Cheers!
Hello, can you add an option to remove the share button? On iOS, I manage to remove it by calling `photosViewController.rightBarButtonItem = null` immediately after the `photosViewController` declaration. It would...
Hello, I'm using nativescript-vue here is my code ``` import { PhotoViewer, PhotoViewerOptions, PaletteType, NYTPhotoItem } from "nativescript-photoviewer"; try{ let images = args.object.images.split(','); let photoviewerOptions = { startIndex: 0, android:...
how can i use white background ? is there anyway to define new paletteType ? @manijak