How do I display and store a PDF file from webservice? In Android and Ios
I got base64binary from web services
Then I stored it in a byte
I don't know what is the next step
can i use this "Xamarin.Essentials"?
This is Cody:
string base64BinaryStr = await vm.DownloadETransAttFile(itemSelected.ATTCH_ID, itemSelected.ATTCH_VERSION, itemSelected.ATTCH_KND);
byte[] bytes = Convert.FromBase64String(base64BinaryStr);
// Xamarin.Essentials.FilePicker.PickAsync....!!!!!
.
.
.