Flutter - WebView webview_flutter 和 BottomNavigationBar 在 onTap 时不会刷新

标签 flutter dart

我正在构建我的第一个 Flutter 应用程序。
该应用程序是一个 BottomNavigationBar - 每个选项卡都需要加载不同的 URL。
世界上最简单的应用程序。
问题是由于某种原因 webview_flutter 不会重新加载 url,它是 initialUrl 上的库存

有什么建议么?谢谢!

import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'dart:developer';

const String _tabOneUrl = 'https://stackoverflow.com/';
const String _tabTwoUrl = 'https://www.youtube.com/';
const String _tabThreeUrl = 'https://www.google.com/';
const String _tabFourUrl = 'https://en.wikipedia.org/wiki/Kraken';

void main() => runApp(new MaterialApp(
      title: 'MY FIRST APP',
      home: new LoadWebView(),
    ));

class TabObject {
  final int index;
  final Text title;
  final String url;
  final Icon icon;

  const TabObject({this.index, this.title, this.url, this.icon});
}

const List<TabObject> tabsList = <TabObject>[
  const TabObject(
      index: 0,
      title: const Text('Page 1'),
      url: _tabOneUrl,
      icon: const Icon(Icons.looks_one)),
  const TabObject(
      index: 1,
      title: const Text('Page 2'),
      url: _tabTwoUrl,
      icon: const Icon(Icons.looks_two)),
  const TabObject(
      index: 2,
      title: const Text('Page 3'),
      url: _tabThreeUrl,
      icon: const Icon(Icons.looks_3)),
  const TabObject(
      index: 3,
      title: const Text('Page 4'),
      url: _tabFourUrl,
      icon: const Icon(Icons.looks_4)),
  const TabObject(
      index: 4,
      title: const Text('Page 5'),
      url: _tabThreeUrl,
      icon: const Icon(Icons.looks_5))
];

class LoadWebView extends StatefulWidget {
  @override
  State<StatefulWidget> createState() {
    return new LoadWebViewState();
  }
}

class LoadWebViewState extends State<LoadWebView> {
  int _bottomNavBarIndex = 0;
  TabObject _tabObject = tabsList[0];
  bool _isFromInit = true;

  Completer<WebViewController> _controller = Completer<WebViewController>();



  void _selectedTab(TabObject tabObject) {
    setState(() {
      _isFromInit = false;
      _bottomNavBarIndex = tabObject.index;
      _tabObject = tabObject;
    });
  }

  @override
  Widget build(BuildContext context) {
    return new Scaffold(
      appBar: new AppBar(
        title: new Text('Web Nail'),
        actions: <Widget>[],
      ),

      body: new WebViewClass(tabObject: _tabObject, controller: _controller,isFromInit:_isFromInit),
      bottomNavigationBar: new BottomNavigationBar(
        currentIndex: _bottomNavBarIndex,
        type: BottomNavigationBarType.fixed,
        onTap: (int index) {
          setState(() {
            _selectedTab(tabsList[index]);
          });
        },
        items: [
          new BottomNavigationBarItem(
            icon: tabsList[0].icon,
            title: tabsList[0].title,
          ),
          new BottomNavigationBarItem(
            icon: tabsList[1].icon,
            title: tabsList[1].title,
          ),
          new BottomNavigationBarItem(
            icon: tabsList[2].icon,
            title: tabsList[2].title,
          ),
          new BottomNavigationBarItem(
            icon: tabsList[3].icon,
            title: tabsList[3].title,
          ),
          new BottomNavigationBarItem(
            icon: tabsList[4].icon,
            title: tabsList[4].title,
          ),
        ],
      ),
    );
  }
}

class WebViewClass extends StatelessWidget {
  final TabObject tabObject;
  final Completer<WebViewController> controller;
  final bool isFromInit;

  WebViewClass({this.tabObject, this.controller,this.isFromInit});

  @override
  Widget build(BuildContext context) {
    return new WebView(
        initialUrl: tabObject.url,
        javascriptMode: JavascriptMode.unrestricted,
        onWebViewCreated: (WebViewController webViewController) {
          controller.complete(webViewController);
        });
  }
}


有没有办法在点击 BottomNavigationBar 后强制重新创建 Web View ?
Flutter 是否足够成熟来处理这个简单的应用程序?

最佳答案

尝试向您的 WebViewClass 添加 key

WebViewClass({Key key, this.tabObject, this.controller,this.isFromInit}) : super(key: key);

然后在构建中:
body: new WebViewClass(key: ObjectKey(_tabObject.index), tabObject: _tabObject, controller: _controller,isFromInit:_isFromInit),

此外,在您解决此问题后,您应该将状态向下移动到 WebViewClass 中 - 在整个 MaterialApp 上调用 setState 会重建它并且会使您的应用程序变慢。

关于Flutter - WebView webview_flutter 和 BottomNavigationBar 在 onTap 时不会刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56722392/

相关文章:

json - 将 json 映射转换为 flutter 中的列表

flutter - 如何在 flutter 中绘制动态高度线?

java - 将基本身份验证从 java 转换为 dart

firebase - 从Firebase获取用户数据

dart - 是否可以在 Dart 中创建 map 列表?

dart - 如何在 Phaser 中制作游戏内按钮(带文字)?

flutter - 如何在flutter中访问有状态小部件中的类变量?

Flutter SingleChildScrollView 扩展

android - Flutter markdown 包依赖项没有为我正确安装

flutter - 当 showMenu 方法在 flutter 中调用时,如何不关闭键盘?