我想创建一个非常简单的flutter应用程序,显示一个特定的网页(一种“网页到应用程序”的东西)。在应用程序中只有一个Webview小部件。我做的一切都是正确的,应用程序在模拟器中启动并运行,但当我在我的设备上安装它时(我还测试了另外两个设备)我得到这个错误:“err_cache_miss”.我猜错误是从chrome中产生的,因为Chrome实际上是webview。这是我的代码:
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My App',
home: Scaffold(
appBar: AppBar(
title: Text('Nextouch By Prevail'),
),
body: WebView(
initialUrl: 'http://www.google.com',
javascriptMode: JavascriptMode.unrestricted, // Enable JavaScript
),
),
);
{\fnSimHei\bord1\shad1\pos(200,288)}
有什么主意吗?谢谢
1条答案
按热度按时间zlhcx6iw1#
根据你的包,我没有找到Webview:但我设法用下面的代码加载它
此处为结果: