Does Ionic support modeless alerts?

In my app, users are able to send an email asynchronously and then continue to use the app while the email service works in the background. I want to make a small, modeless alert at the bottom of the screen that notifies the user whether the email was sent successfully or not.

To my knowledge, Ionic only supports modal popups at this time. Is there support for modeless alerts?

not Ionic per-se, but there’s a cool Cordova plugin for toasts, also featured in ngCordova: http://ngcordova.com/docs/plugins/toast/

Nice, that’s good to know. Hopefully the Ionic team can add support for this feature in the future.

Thanks for showing me the plugin! I will definitely use that in upcoming projects. In the meantime, I’ve found an adequate solution from @jmondragon:

$ionicLoading.show({ template: ‘Item Added!’, noBackdrop: true, duration: 2000 });