Сбой: inAppWebview не загружает initialUrl

#flutter #webview

#сбой #webview

Вопрос:

У меня есть это в моем WebView…

 Widget myPlayer(String url) {
    print('WebView con: $url');
    return new InAppWebView(
      initialUrl: url,
      initialHeaders: {},
      initialOptions: InAppWebViewGroupOptions(
        crossPlatform: InAppWebViewOptions(
          debuggingEnabled: true,
        ),
      ),
      onWebViewCreated: (InAppWebViewController controller) {
          webView = controller;
      },
      onLoadStart: (InAppWebViewController controller, String url) {
        status = false;
      },
      onLoadStop: (InAppWebViewController controller, String url) {
        status = true;
      },
      onWindowFocus: (controller) => {

      },
    );
  }
  

Но когда виджет загружается, страница, которую я вижу, является «предыдущей», без строкового URL…

Кроме того, я вижу что-то подобное на консоли

 W/ContentCatcher(30360): Failed to notify a WebView
W/System  (30360): A resource failed to call release.
D/        (30360): PlayerBase::PlayerBase()
D/        (30360): TrackPlayerBase::TrackPlayerBase()
  

Ответ №1:

Вы можете скопировать вставить запустить полный код ниже,
когда InAppWebView загрузка закончится. вы можете напрямую вызвать, webView.loadUrl чтобы изменить URL
фрагмент кода

 InAppWebViewController webView;

onWebViewCreated: (InAppWebViewController controller) {
        webView = controller;
      },

webView.loadUrl(url: "https://flutter.dev/");
  

рабочая демонстрация

введите описание изображения здесь

полный код

 import 'package:flutter/material.dart';
import 'package:flutter_inappwebview/flutter_inappwebview.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  MyHomePage({Key key, this.title}) : super(key: key);

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  InAppWebViewController webView;
  bool status;

  _changeUrl() {
    webView.loadUrl(url: "https://flutter.dev/");
  }

  Widget myPlayer(String url) {
    print('WebView con: $url');
    return InAppWebView(
      initialUrl: url,
      initialHeaders: {},
      initialOptions: InAppWebViewGroupOptions(
        crossPlatform: InAppWebViewOptions(
          debuggingEnabled: true,
        ),
      ),
      onWebViewCreated: (InAppWebViewController controller) {
        webView = controller;
      },
      onLoadStart: (InAppWebViewController controller, String url) {
        status = false;
      },
      onLoadStop: (InAppWebViewController controller, String url) {
        status = true;
      },
      onWindowFocus: (controller) => {},
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: myPlayer("https://pub.dev/"),
      floatingActionButton: FloatingActionButton(
        onPressed: _changeUrl,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}