【发布时间】:2020-02-21 17:51:14
【问题描述】:
我添加了 pubspec.yaml webview_flutter: ^0.3.19+8
我使用 Flutter 版本 1.12.13+hotfix.8
这是我的代码
import 'package:webview_flutter/webview_flutter.dart';
void main() => runApp(MaterialApp(
home: app(),
));
class app extends StatefulWidget {
@override
_appState createState() => _appState();
}
class _appState extends State<app> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('App mobile'),
),
body: Container(
constraints: BoxConstraints(maxHeight: 500),
child: WebView(
initialUrl: "https://google.com",
),
)
);
}
}
但在运行并单击white 模拟器屏幕后,在标签运行中我有这个...
E/flutter ( 9570): [ERROR:flutter/lib/ui/ui_dart_state.cc(157)] Unhandled Exception: PlatformException(error, java.lang.IllegalStateException: Sending touch to an unknown view with id: 1
E/flutter ( 9570): at io.flutter.plugin.platform.PlatformViewsController$1.onTouch(PlatformViewsController.java:206)
E/flutter ( 9570): at io.flutter.embedding.engine.systemchannels.PlatformViewsChannel$1.touch(PlatformViewsChannel.java:168)
...
我将不胜感激...
【问题讨论】: