Flutter教程

Toast

Contents

This plugin allows you to show a native Toast (a little text popup) on iOS, Android and WP8. It's great for showing a non intrusive native notification which is guaranteed always in the viewport of the browser.

Requires Cordova plugin: cordova-plugin-x-toast. For more info, please see the Toast plugin docs.

https://github.com/EddyVerbruggen/Toast-PhoneGap-Plugin

联系我们?

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 弹出框Toast插件的安装(Installation)

ionic cordova plugin add cordova-plugin-x-toast npm install @ionic-native/toast
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/toast

Ionic 弹出框Toast插件支持的平台(Supported Platforms)

  • Android
  • BlackBerry 10
  • iOS
  • Windows
  • Windows Phone 8

Ionic 弹出框Toast插件的用法(Usage)

import { Toast } from '@ionic-native/toast/ngx';

constructor(private toast: Toast) { }

...

this.toast.show(`I'm a toast`, '5000', 'center').subscribe(
  toast => {
    console.log(toast);
  }
);