Links
🥑

Show Toast/Banner

🧋 Bubble.io Plugin

[Action] Natively - Show Toast

  • Text
  • Type - DEFAULT, DARK, ERROR, SUCCESS, WARNING, or MATRIX

[Action] Natively - Show Banner

  • Title
  • Description
  • Type - SUCCESS, ERROR, or INFO

🛠 JavaScript SDK

Show App Toast

1
const type = "DEFAULT"; // DEFAULT, DARK, ERROR, SUCCESS, WARNING, or MATRIX
2
const text = "Test text";
3
window.natively.showAppToast(type, text);

Show App Banner

const type = "SUCCESS"; // SUCCESS, ERROR, or INFO
const title = "Test Title";
const description = "Test Description";
window.natively.showAppBanner(type, title, description);