make to process
var file = Path.Combine (FileSystem.CacheDirectory, decoded);
and to display files using an external app
await Launcher.OpenAsync (new OpenFileRequest
{
File = new ReadOnlyFile (file)
});
I really don't understand, what to do ..
I got the API files (image, jpg, pdf, doc etc) which have been encoded in base64 ...
I read when the API file in the form of base64 must be decoded first ..
can you help me, to display a base64 encoded file, so that it can be opened in an external app ..