0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

webview_flutter 4系 の iOS アプリケーションを Safari を使用してデバッグする方法

Last updated at Posted at 2024-08-16

環境

Flutter 3.22.1
webview_flutter 4.7.0
webview_flutter_wkwebview 3.13.1

はじめに

iOS で webview_flutter のデバッグを有効にし、Safari でデバッグする方法について説明します。

まず、 webview_flutter でデバッグ モードを有効にするには、 WebKitWebViewController.setInspectable に true を設定する必要があります。

webview_flutter_wkwebview 3.6.0からそうなっているようです。
https://pub.dev/packages/webview_flutter_wkwebview/changelog

コード例

import 'package:webview_flutter_wkwebview/webview_flutter_wkwebview.dart';

class _WebViewWidgetState extends State<WebViewPage> {
  final controller = () {
    final params = () {
      if (WebViewPlatform.instance is WebKitWebViewPlatform) {
        return WebKitWebViewControllerCreationParams();
      } else {
        return const PlatformWebViewControllerCreationParams();
      }
    }();

    final controller = WebViewController.fromPlatformCreationParams(
      params,
    );
    if (controller.platform is WebKitWebViewController) {
      (controller.platform as WebKitWebViewController).setInspectable(true);
    }
    return controller;
  }();
...
}

その他設定

iPhoneおよびMacの設定に関しては他記事参考に設定すればOKです。

参考
https://qiita.com/ya8612tec/items/20390b3e4fbec4d01682

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?