Version: v5On this pageToastThis 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-PluginStuck on a Cordova issue?Don't waste precious time on plugin issues.If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.Contact Us Today!InstallationCapacitorCordovaEnterprise$ npm install cordova-plugin-x-toast $ npm install @awesome-cordova-plugins/toast $ ionic cap sync$ ionic cordova plugin add cordova-plugin-x-toast $ npm install @awesome-cordova-plugins/toast Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact UsSupported PlatformsAndroidBlackBerry 10iOSWindowsWindows Phone 8UsageReactLearn more about using Ionic Native components in ReactAngularimport { Toast } from '@awesome-cordova-plugins/toast/ngx';constructor(private toast: Toast) { }...this.toast.show(`I'm a toast`, '5000', 'center').subscribe( toast => { console.log(toast); });