A simple webview using Chrome CustomTabs for Android and SFSafariViewController for iOS.
npm install nativescript-simple-webview
tns plugin add nativescript-simple-webview
`
Usage
Unlike other nativescript webview plugins the simple webview plugin exposes a SimpleWebView interface with a single instance method named close().
` TypeScript
import { openUrl } from 'nativescript-simple-webview';
const webview = openUrl({
url: 'http://www.google.com',
});
webview.close();
``