How to Use Media Picker In Xamarin Forms Portable
Today We will learn how to use Media Picker Nuget in Xamarin Forms Cross Platform First of all download MediaPicker nuget from this link. API Usage Call CrossMedia.Current from any project or PCL to gain access to APIs. Before taking photos or videos you should check to see if a camera exists and if photos and videos are supported on the device. There are five properties that you can check: /// <summary> /// Initialize all camera components, must be called before checking properties below /// </summary> /// <returns>If success</returns> Task<bool> Initialize(); /// <summary> /// Gets if a camera is available on the device /// </summary> bool IsCameraAvailable { get; } /// <summary> /// Gets if ability to take photos supported on the device /// </summary> bool IsTakePhotoSupported { get; } /// <summary> /// Gets if the ability to pick photo is supported on the device /// </summary> bo...