JemmyWang94

Results 7 issues of JemmyWang94

how to add addJavaScriptChannel? such as webview_flutter Future addJavaScriptChannel( String name, { required void Function(JavaScriptMessage) onMessageReceived, }) { assert(name.isNotEmpty); return platform.addJavaScriptChannel(JavaScriptChannelParams( name: name, onMessageReceived: onMessageReceived, )); }

Why does the web page inside expand and contract like a spring when dragging to change the window size, and then restore it? This phenomenon does not occur in the...

windows server 2016 code: unsupported_plaform Message: The plaform is not supported Webview2 Official documents supports windows server 2016, and i have tried other plug-in([webview_win_floating](https://pub-web.flutter-io.cn/packages/webview_win_floating)), it can work. Can you update...

### Package dio ### Version 5.6.0 ### Operating-System Web ### Adapter Default Dio ### Output of `flutter doctor -v` _No response_ ### Dart Version 3.5.0 ### Steps to Reproduce BrowserHttpClientAdapter...

p: dio
s: bug
i: out of support
platform: web
p: web_adapter

flutter build windows 导出来的包,打开exe文件,我初始在登录页,没有打开webview,当登录后加载webview,关闭应用,又弹出新应用在登录页,登录页处关掉,页面才正常关闭。

写了一个拖动事件,在Container边缘加了panGesture,不断地拖动改变webview视图的大小(webview在指定大小的容器中),拖动多次后应用闪退。

Column( children: [ Container(height: 30, color: Colors.yellow, child: ElevatedButton(onPressed: (){ setState(() { showBrowser = !showBrowser; }); }, child: Container(color: Colors.blue)),), Expanded(child: showBrowser ? Container(color: Colors.red,):ExampleBrowser()), ], ) I use this...