Toast
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.
Cordovaの問題で困っていますか?

本格的なプロジェクトを構築している場合、トラブルシューティングに時間を費やす余裕はありません。Ionicのエキスパートが、保守、サポート、統合に関する公式サポートを提供しています。
インストール
Ionic Native Enterprise はIonic Teamが完全にサポートしメンテナンスしているプラグインを利用できます。 詳しくみる か、 エンタープライズプラグインに興味があれば 連絡ください
サポートしているプラットフォーム
- Android
- BlackBerry 10
- iOS
- Windows
- Windows Phone 8
利用方法
React
Angular
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);
}
);