Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 716 Bytes

File metadata and controls

22 lines (17 loc) · 716 Bytes

Toasts

The kvision-toastify module contains ready to use functions to display toast messages - small, non-disruptive notification windows, which disappear automatically. To display a toast message just call one of the primary, secondary, success, info, warning, danger , light and dark functions of the Toast object.

Toast.info("This is a toast message")

Toast.danger("There was an error!")

You can also pass ToastOptions parameter, to configure how the toast message is displayed.

Toast.success(
    "This is a toast message",
    options = ToastOptions(
        position = ToastPosition.TOPLEFT,
        close = true,
        duration = 10000
    )
)