Answers for "Load webpage from html string"

0

Load webpage from html string

WebViewPlus(
        javascriptMode: JavascriptMode.unrestricted,
        onWebViewCreated: (controller){
          controller.loadString(r"""
           <html lang="en">
            <body>hello world</body>
           </html>
      """);
        },
      )
Posted by: Guest on April-01-2022

Browse Popular Code Answers by Language