Flutter WebView 组件 inappwebview

Flutter WebView 组件 inappwebview,第1张

flutter_inappwebview | Flutter Package (pub.dev)

flutter_inappwebview: ^5.3.2

1. 安装插件

配置 flutter_inappwebview 插件。

2. 引入依赖

在需要用到的该插件的文件中引入插件包。

import 'package:flutter_inappwebview/flutter_inappwebview.dart';

3. 使用插件

InAppWebView(
    initialUrl: "https://www.baidu.com",
    initialHeaders: {},
    initialOptions: InAppWebViewGroupOptions(
        inAppWebViewOptions: InAppWebViewOptions(
        debuggingEnabled: true,
        )
    ),
    onWebViewCreated: (InAppWebViewController controller) {
 
    },
    onLoadStart: (InAppWebViewController controller, String url) {
 
    },
    onLoadStop: (InAppWebViewController controller, String url) {
 
    },
)

 

4. 注意事项

1. 如果提示

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/990318.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存