Forms9Patch icon indicating copy to clipboard operation
Forms9Patch copied to clipboard

Android 7.0 Google Chrome 102.0.5005.78 Webview Broken - Xamarin App

Open jostar911 opened this issue 2 years ago • 1 comments

Hi, I'm using XForms9Patch.PrintService and Chrome's latest update version 102 is not displaying data on the webview. Any clues and solution to this error? Example code:

        private async Task PrintCodes()
        {          
            //Set up Razor template
            var printTemplate = new Printing.PrintTemplate();

            //Set the model property
            printTemplate.Model = codesModel.ToList();

            //Generate the HTML
            var htmlString = printTemplate.GenerateString();

            if (PrintService.CanPrint)
            {
                //print html format data
                await htmlString.PrintAsync("Codes");
            }
        }

Thanks,

jostar911 avatar Jun 01 '22 19:06 jostar911