Chargez la page Web à partir de la chaîne HTML
WebViewPlus(
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (controller){
controller.loadString(r"""
<html lang="en">
<body>hello world</body>
</html>
""");
},
)
CodePadding