Browser Tab
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.
联系我们?

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.
Ionic Browser Tab插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
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
}
});
}