flutter_webview_plugin
flutter_webview_plugin copied to clipboard
Is there a feature similar to javascriptchannels in webview_flutter?
How to send a message to flutter via javascript in flutter_webview_plugin, like javascirptchannel in webview_flutter
thx!
contact me ,and I will teach you , I can do this
my email is [email protected] , and also for QQ is 1770532275
I solved this problem with dynamic channel name for Android and iOS #523. Hope it's helpful
@rinlv resolved? like this?
return WebviewScaffold(
url: url,
javascriptChannels: <JavascriptChannel>{
JavascriptChannel(
name: 'native',
onMessageReceived: (message) {
print(message);
},
),
},
);