🥑
Show Toast/Banner
- Text
- Type - DEFAULT, DARK, ERROR, SUCCESS, WARNING, or MATRIX
- Title
- Description
- Type - SUCCESS, ERROR, or INFO
1
const type = "DEFAULT"; // DEFAULT, DARK, ERROR, SUCCESS, WARNING, or MATRIX
2
const text = "Test text";
3
window.natively.showAppToast(type, text);
const type = "SUCCESS"; // SUCCESS, ERROR, or INFO
const title = "Test Title";
const description = "Test Description";
window.natively.showAppBanner(type, title, description);
Last modified 2h ago