On all platform I want to be able to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "*.json" });
Actual Behavior
On windows I have to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "Jsontype (*.json)|*.json" }); On uwp I have to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "*.json" });
On anroid I have to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "text/json" });
On IOs I have to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { UTType.JSON });
Expected Behavior
On all platform I want to be able to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "*.json" });
Actual Behavior
On windows I have to use
FileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "Jsontype (*.json)|*.json" });
On uwp I have to useFileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "*.json" });
On anroid I have to useFileData fileData = await CrossFilePicker.Current.PickFile( new string[] { "text/json" });
On IOs I have to useFileData fileData = await CrossFilePicker.Current.PickFile( new string[] { UTType.JSON });