It is possible to access default photo gallery from Android and IOS and display in Xamarin.Forms
Note: I am not talk about picker. I need list of photos from gallery and show in list in Portable Library in xamarin forms.
It is possible to access default photo gallery from Android and IOS and display in Xamarin.Forms
Note: I am not talk about picker. I need list of photos from gallery and show in list in Portable Library in xamarin forms.
There is no out of the box API available in the Xamarin Forms to enumerate the images from the iOS/Android. You will need to create CustomRenderer
or DependencyService
to list the images.
The following post may help you implement it -
The below link is about creating your own gallery, where you can use it as per your requirement.. "http://rasmustc.com/blog/Image-Gallery-With-Xamarin-Forms/"... Hope this helps...