无法将字符串小部件传递给 webview_flutter

Can not pass the string widget to webview_flutter

我无法传递作为字符串的小部件 webDon。我该如何解决?谢谢

只需删除常量。因为你的 displayText 不是常量。试试这个..

return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: SafeArea(
        child: Scaffold(
          body: WebView(
            initialUrl: displayText,
            javascriptMode: JavascriptMode.unrestricted,
          ),
        ),
      ),
    );