Search code examples
flutterwebviewandroid-webviewwkwebview

How to know the Android Webview version or WkWebView version of the device on Flutter?


I am using webview_flutter package and I want to log the users' device info for the system Webview version for Android and WkWebView for iOS how can I get the corresponding webview version?


Solution

  • This package fk_user_agent can retrieve user agent which includes info about the web view version

    await FkUserAgent.init();
    String? userAgent = FkUserAgent.webViewUserAgent;