private async Task LoadPdfFile(string pdfUrlStr)
        {
            readPdfPageViewModel.IsDownloading = true;
            var localFilePath = await PdfService.DownloadAsync(pdfUrlStr).ConfigureAwait(false);

            readPdfPageViewModel.IsDownloading = false;

            readPdfPageViewModel.PdfSource = new Uri(localFilePath);
        }