Flutter之Webview組件

https://pub.flutter-io.cn/packages/flutter_webview_plugin

/**
 *
 * const WebviewScaffold({
    Key key,
    this.appBar,
    @required this.url,
    this.headers,//
    this.withJavascript,//是否允許執(zhí)行js代碼
    this.clearCache,//
    this.clearCookies,//
    this.enableAppScheme,//
    this.userAgent,//
    this.primary = true,//
    this.persistentFooterButtons,//
    this.bottomNavigationBar,//
    this.withZoom,//是否允許網(wǎng)頁縮放
    this.withLocalStorage,//是否允許LocalStorage
    this.withLocalUrl,//
    this.scrollBar,//是否顯示滾動條
    this.supportMultipleWindows,//
    this.appCacheEnabled,//
    this.hidden = false,//
    this.initialChild,//
    this.allowFileURLs,//
    this.resizeToAvoidBottomInset = false,//
    this.invalidUrlRegex,//
    this.geolocationEnabled//
    })
 */

import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
import 'package:http/http.dart' as http;

class Widget_WebView_Page extends StatefulWidget {

  @override
  State<StatefulWidget> createState() {
    return Widget_WebView_State();
  }

}

class Widget_WebView_State extends State<Widget_WebView_Page>
    with SingleTickerProviderStateMixin {
  FlutterWebviewPlugin flutterWebviewPlugin = FlutterWebviewPlugin();
  var title = "WebView組件";
  var tabs;
  TabController controller;
  var choiceIndex = 0;

  //獲取h5頁面標(biāo)題
  Future<String> getWebTitle() async {
    String script = 'window.document.title';
    var title = await
    flutterWebviewPlugin.evalJavascript(script);
    setState(() {
      this.title = title;
      print('####################   $title');
    });
  }

  //獲取h5頁面標(biāo)題
  Future<String> getWebTitle2({String url}) async {
    var client = http.Client();
    client
        .get(url)
        .then(
            (response) {
          String title = RegExp(
              r"<[t|T]{1}[i|I]{1}[t|T]{1}[l|L]{1}[e|E]{1}(\s.*)?>([^<]*)</[t|T]{1}[i|I]{1}[t|T]{1}[l|L]{1}[e|E]{1}>")
              .stringMatch(response.body);
          if (title != null) {
            title =
                title.substring(title.indexOf('>') + 1, title.lastIndexOf("<"));
          } else {
            title = "";
          }
          print("####################  " + title);
        })
        .catchError(
            (error) {
          print(error);
        })
        .whenComplete(client.close,);
  }


  @override
  void initState() {
    super.initState();

    /**
     * 監(jiān)聽web頁加載狀態(tài)
     */
    flutterWebviewPlugin.onStateChanged.listen((
        WebViewStateChanged webViewState) async {
//      setState(() {
//        title = webViewState.type.toString();
//      });
      switch (webViewState.type) {
        case WebViewState.finishLoad:
          handleJs();

          getWebTitle();

          break;
        case WebViewState.shouldStart:
          break;
        case WebViewState.startLoad:
          break;
        case WebViewState.abortLoad:
          break;
      }
    });

    /**
     * 監(jiān)聽頁面加載url
     */
    flutterWebviewPlugin.onUrlChanged.listen((String url) {
//      getWebTitle(url: url);

//      setState(() {
//        title = url;
//      });
    });

    /**
     * 監(jiān)聽x軸滑動距離
     * 好像沒什么用
     */
//    flutterWebviewPlugin.onScrollXChanged.listen((double offsetX) {
//      title = offsetX.toString();
//    });

//    flutterWebviewPlugin.onScrollYChanged.listen((double offsetY) {
//      title = offsetY.toString();
//    });

    tabs = <Widget>[
      Tab(
        child: GestureDetector(
          child: Text("刷新"),
          onTap: () {
            flutterWebviewPlugin.reload();
          },
        ),
      ),
      Tab(
        child: GestureDetector(
          child: Text("返回"),
          onTap: () {
            flutterWebviewPlugin.goBack();
          },
        ),
      ),
      Tab(
        child: GestureDetector(
          child: Text("加載指定url"),
          onTap: () {
            flutterWebviewPlugin.reloadUrl("https://www.360.com");
          },
        ),
      ),
    ];
    controller =
        TabController(initialIndex: 0, length: tabs.length, vsync: this);
  }

  @override
  Widget build(BuildContext context) {
    return WebviewScaffold(
      url: "http://www.baidu.com",
      //默認(rèn)加載地址
      appBar: AppBar(
        title: Text(title),
        backgroundColor: Colors.grey,
        leading: GestureDetector(
          child: Icon(Icons.arrow_back),
          onTap: () {
            flutterWebviewPlugin.close();
          },
        ),
        bottom: TabBar(
          tabs: tabs,
          controller: controller,
          indicatorColor: Colors.red,
        ),
        actions: <Widget>[
        ],
      ),
      bottomNavigationBar: BottomNavigationBar(
          items: [
            BottomNavigationBarItem(
              icon: Icon(Icons.home),
              title: Text(
                "首頁", /*style: TextStyle(color: Color(0xff333333)),*/),
              activeIcon: Icon(
                Icons.home,
                color: Color(0xffDE331F),
//                size: 30.0,
              ),
              backgroundColor: Color(0xffff0000),
            ),
            BottomNavigationBarItem(
              icon: Icon(Icons.devices_other),
              title: Text(
                "其他", /*style: TextStyle(color: Color(0xff333333)),*/),
              activeIcon: Icon(
                Icons.devices_other,
                color: Color(0xffDE331F),
//                size: 30.0,
              ),
              backgroundColor: Color(0xffff0000),
            ),
          ],
          currentIndex: choiceIndex,
          fixedColor: Color(0xffDE331F),
//          iconSize: 30.0,
//          type: BottomNavigationBarType.fixed,
          onTap: (index) {
            if (index == 0) {
              setState(() {
                choiceIndex = 0;
                flutterWebviewPlugin.reloadUrl("https://www.qq.com/");
              });
            } else {
              setState(() {
                flutterWebviewPlugin.reloadUrl("https://www.alipay.com/");
                choiceIndex = 1;
              });
            }
          }

      ),
      scrollBar: false,
      withZoom: false,
    );
  }

  @override
  void dispose() {
    flutterWebviewPlugin.dispose();
    super.dispose();
  }

  void handleJs() {
    flutterWebviewPlugin.evalJavascript(
        "abc(${title}')")
        .then((result) {

    });
  }
}


/**
 *
 * const WebviewScaffold({
    Key key,
    this.appBar,
    @required this.url,
    this.headers,//
    this.withJavascript,//是否允許執(zhí)行js代碼
    this.clearCache,//
    this.clearCookies,//
    this.enableAppScheme,//
    this.userAgent,//
    this.primary = true,//
    this.persistentFooterButtons,//
    this.bottomNavigationBar,//
    this.withZoom,//是否允許網(wǎng)頁縮放
    this.withLocalStorage,//是否允許LocalStorage
    this.withLocalUrl,//
    this.scrollBar,//是否顯示滾動條
    this.supportMultipleWindows,//
    this.appCacheEnabled,//
    this.hidden = false,//
    this.initialChild,//
    this.allowFileURLs,//
    this.resizeToAvoidBottomInset = false,//
    this.invalidUrlRegex,//
    this.geolocationEnabled//
    })
 */

碼云地址:https://gitee.com/xgljh/Flutter.git

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蘑志,老刑警劉巖菇民,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芒帕,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)惹骂,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來做瞪,“玉大人对粪,你說我怎么就攤上這事∽芭睿” “怎么了著拭?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長牍帚。 經(jīng)常有香客問我儡遮,道長,這世上最難降的妖魔是什么暗赶? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任鄙币,我火速辦了婚禮,結(jié)果婚禮上蹂随,老公的妹妹穿的比我還像新娘十嘿。我一直安慰自己,他們只是感情好岳锁,可當(dāng)我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布绩衷。 她就那樣靜靜地躺著,像睡著了一般激率。 火紅的嫁衣襯著肌膚如雪咳燕。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天乒躺,我揣著相機(jī)與錄音招盲,去河邊找鬼。 笑死聪蘸,一個胖子當(dāng)著我的面吹牛宪肖,可吹牛的內(nèi)容都是我干的表制。 我是一名探鬼主播,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼控乾,長吁一口氣:“原來是場噩夢啊……” “哼么介!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蜕衡,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤壤短,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后慨仿,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體久脯,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年镰吆,在試婚紗的時候發(fā)現(xiàn)自己被綠了帘撰。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡万皿,死狀恐怖摧找,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情牢硅,我是刑警寧澤蹬耘,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站减余,受9級特大地震影響综苔,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜位岔,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一如筛、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧赃承,春花似錦妙黍、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至抓于,卻和暖如春做粤,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背捉撮。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工怕品, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人巾遭。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓肉康,卻偏偏與公主長得像闯估,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子吼和,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容