Can Flutter WebViewPlus use a css file from a local html string?
I am using a local HTML string, in which I use the style.css from assets/html directory: final String html = """ <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="assets/html/style.css"> </head> <body> <h2>Simple HTML with External CSS</h2> <p class="blue">This is a…