Info
Success
Warning
Error
Example in Context
Toast notifications are positioned based on the platform to ensure optimal visibility without interfering with core content or user interactions. On desktop: the default placement is in the top-right corner of the screen.
Info
Success
Warning
Error
SnackbarService.Enqueue(new SnackbarOptions
{
Title = "Message heading",
Message = "We inform you about service changes.",
Variant = SnackbarVariant.Info,
Closable = true,
Placement = SnackbarPlacement.TopEnd,
DurationMs = 5000
});