This repository was archived by the owner on May 15, 2024. It is now read-only.

Description
Description
The share sheet does not show any icons of other apps on iOS 15.5 and iOS 15.7.6
Steps to Reproduce
- Create a Xamarin.Forms app to consume Xamarin.Essentials Share
- Click on that icon to show Share Sheet
Expected Behavior
Share Sheet with icons of other applications
Actual Behavior
Share Sheet is empty
Code Sample
if (Device.RuntimePlatform == Device.iOS)
{
await Share.RequestAsync(new ShareTextRequest
{
Title = "Name",
Text = "",
Subject = "",
Uri = ViewModel.PersonalDetail.AccessUrl.ToString()
});
}
Basic Information
It happens both on physical device and emulator.
-
Version with issue: N/A
-
Last known good version: N/A
-
IDE: Visual Studio for Mac ENTERPRISE
-
Platform Target Frameworks:
-
Nuget Packages:
-
Affected Devices:
Screenshots
Reproduction Link
If I leave the following code in the Uri it displays as follows:
await Share.RequestAsync(new ShareTextRequest
{
Title = "Name",
Text = "",
Subject = "",
Uri = "htttps.google.com"
});
