Flutter教程

Browser Tab

Contents

This plugin provides an interface to in-app browser tabs that exist on some mobile platforms, specifically Custom Tabs on Android (including the Chrome Custom Tabs implementation), and SFSafariViewController on iOS.

https://github.com/google/cordova-plugin-browsertab

联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.

Contact Us Today!

Ionic Browser Tab插件的安装(Installation)

ionic cordova plugin add cordova-plugin-browsertab npm install @ionic-native/browser-tab
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
ionic enterprise register --key=YOURPRODUCTKEY npm install @ionic-enterprise/browser-tab

Ionic Browser Tab插件支持的平台(Supported Platforms)

  • Android
  • iOS

Ionic Browser Tab插件的用法(Usage)

import { BrowserTab } from '@ionic-native/browser-tab/ngx';

constructor(private browserTab: BrowserTab) {

  browserTab.isAvailable()
    .then(isAvailable => {
      if (isAvailable) {
        browserTab.openUrl('https://ionic.io');
      } else {
        // open URL with InAppBrowser instead or SafariViewController
      }
    });
}