đŸĨ‘Show Toast/Banner

Toast is a brief notification that appears for a short duration and then gradually disappears. Banner advertisements are positioned within an app's interface.

🧋 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

const type = "DEFAULT"; // DEFAULT, DARK, ERROR, SUCCESS, WARNING, or MATRIX
const text = "Test text";
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);

Last updated