我有一个奇怪的问题与Flutter InAppWebView插件版本4.0.0+4这里https://pub.dev/packages/flutter_inappwebview在那里我试图加载简单的联系我们表单到插件,并意识到我不能输入内容到html输入文本字段,如果我使用非英语键盘,在我的情况下,我使用越南键盘。如果我把键盘切换到英文键盘,它就可以工作了。我仔细检查了联系我们的形式,并确保它的工作100%在Chrome浏览器以外的Flutter应用程序使用非英语键盘。我没有为插件使用任何特殊的代码或设置,就像在pub.dev中提到的一样。我使用颤振通道稳定v. 1.22.6
这是我的代码,以防你需要它:
class WebViewerWidget extends StatefulWidget {
final Map<String, String> metaData;
WebViewerWidget({this.metaData});
@override
_WebViewerWidgetState createState() => _WebViewerWidgetState();
}
class _WebViewerWidgetState extends State<WebViewerWidget> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
InAppWebViewController _webviewCtrl;
double progressIndicator = 0;
return Scaffold(
backgroundColor: ColorPalette.white,
appBar: PreferredSize(
child: TopNavWidget(
title: widget.metaData['title'] ?? '',
),
preferredSize: Size.fromHeight(50.0),
),
body: Builder(
builder: (BuildContext context) {
return Container(
child: Column(
children: [
Container(
child: progressIndicator < 1
? LinearProgressIndicator(
value: progressIndicator,
backgroundColor: Colors.black12,
valueColor:
AlwaysStoppedAnimation<Color>(Colors.blue),
)
: Container()),
Expanded(
child: InAppWebView(
initialUrl: widget.metaData['url'] ?? 'about:blank',
initialOptions: InAppWebViewGroupOptions(
crossPlatform: InAppWebViewOptions(
debuggingEnabled: true,
javaScriptEnabled: true,
useShouldInterceptAjaxRequest: true,
useShouldInterceptFetchRequest: true,
),
ios: IOSInAppWebViewOptions(),
android: AndroidInAppWebViewOptions(),
),
onWebViewCreated:
(InAppWebViewController webviewController) {
_webviewCtrl = webviewController;
},
onProgressChanged:
(InAppWebViewController controller, int progress) {
setState(() {
progressIndicator = progress / 100;
});
},
),
),
],
),
);
},
));
}
}
谢谢。
好吧,在花了几天时间解决这个问题后,我不得不放弃这个。这绝对是插件的bug,发现有人在https://github.com/pichillilorenzo/flutter_inappwebview/issues/560
有类似的问题。然后我尝试了另一个名为WebViewhttps://pub.dev/packages/webview_flutter
的插件,它工作得很好。
这已经修复了新版本5.0.0
(最新版本现在是5.0.5+3
):使用useHybridComposition: true
Android特定的webview选项,所有与Android键盘相关的问题都被修复了。