flutter webview code
时间: 2023-09-21 12:14:09 浏览: 177
以下是一个简单的Flutter WebView示例代码:
```dart
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter WebView Demo',
home: Scaffold(
appBar: AppBar(
title: Text('Flutter WebView Demo'),
),
body: WebView(
initialUrl: 'https://www.google.com',
javascriptMode: JavascriptMode.unrestricted,
),
),
);
}
}
```
在上面的示例中,我们使用了`webview_flutter`插件来创建WebView。要使用此插件,请在`pubspec.yaml`文件中添加以下依赖项:
```yaml
dependencies:
flutter:
sdk: flutter
webview_flutter: ^2.0.14
```
在构建WebView时,我们指定了初始URL(在本例中为Google)和JavaScript模式(在本例中为无限制)。您还可以根据需要添加其他属性和选项。
阅读全文