Issue
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;
Answered By - Ammar Mohamed
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.