我的颤振代码有一个错误。
如何解决这个错误,扑动URL启动器不工作。
如果你想在web视图中打开google play商店,那么你可以简单地执行
import 'dart:io';
import 'package:webview_flutter/webview_flutter.dart';
class WebViewExample extends StatefulWidget {
@override
WebViewExampleState createState() => WebViewExampleState();
}
class WebViewExampleState extends State<WebViewExample> {
@override
void initState() {
super.initState();
// Enable virtual display.
if (Platform.isAndroid) WebView.platform = AndroidWebView();
}
@override
Widget build(BuildContext context) {
return WebView(
initialUrl: 'https://play.google.com/store/apps',
);
}
}
查看webview_flutter包文档获取更多信息