Toasts are very simple ways of sending out a warning. They usually appear on Androids.
Top or Bottom
Tap to View
Toasts that appear from the top. These will automatically hide in 3 seconds.
Toast Options
Tap or Programatic
We built notifications based on Boostrap toast system, so you can trigger them via a tap or programatically by simply using the Boostrap classic code.
var toastID = document.getElementById('toast-1');
toastID = new bootstrap.Toast(toastID);
toastID.show();