nativescript-oauth icon indicating copy to clipboard operation
nativescript-oauth copied to clipboard

Expose Webview component

Open airandfingers opened this issue 8 years ago • 0 comments
trafficstars

We'd like to customize our Webview's settings, including its user agent string and permissions. On Android, these require access to the Webview component, to make calls like these:

let settings = webView.android.getSettings();
settings.setUserAgentString('My Custom UA String');
settings.setAllowFileAccess(false);

nativescript-oauth doesn't currently expose the Webview component, so we currently can't change settings like this.

airandfingers avatar Oct 16 '17 20:10 airandfingers