I want to create a custom toast message like this
How to create any idea. please help
frappe.show_alert({
message:__('Hi, you have a new message'),
indicator:'green'
}, 5);
https://frappeframework.com/docs/user/en/api/dialog#frappe-show-alert
frappe.show_alert('Hi, you have a new message', 5);
frappe.show_alert({
message:__('Hi, you have a new message'),
indicator:'green'
}, 5);