flutter から webview にデータを渡したい
私のデータは次のように定義されています。
var data = {
"id": "hweqetwyqte"
};
以下のようなデータをwebviewで渡していますが、
webViewController.evaluateJavascript('''
t._selectItem($data); // this is not working --> I want this to work
t._selectItem({"id": "hweqetwyqte"}); // this is working
''');
どんな助けでも大歓迎です!!