我是 Flutter 新手,我尝试了 Flutter 中的 webview,它在 Android 上运行良好
我正在使用
webview_flutter:^3.0.0
这是我的代码
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
void main() => runApp(ScreenerWebView());
class ScreenerWebView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Screener',
home: Scaffold(
appBar: PreferredSize(
preferredSize: Size.fromHeight(0),
child: AppBar(
// ignore: prefer_const_constructors
title: SizedBox(
height: kToolbarHeight,
),
)),
// ignore: prefer_const_constructors
body: WebView(
initialUrl: "https://www.google.com/",
javascriptMode: JavascriptMode.unrestricted,
),
),
);
}
}
webview_flutter 软件包不支持 macOS 目标,这就是您看到错误的原因
当你在包的 pubdev 上时,看看
flutter
下的 Published x days ago
徽章,大多数时候它会告诉你支持哪些平台,如果是 webview_flutter,它只有 android 和 ios
请问您找到解决方案了吗?