Toasts
Toast.info("This is a toast message")
Toast.danger("There was an error!")Toast.success(
"This is a toast message",
options = ToastOptions(
position = ToastPosition.TOPLEFT,
close = true,
duration = 10000
)
)Last updated