NotificationService
Toast-style notifications with auto-dismiss. Uses FlexCore's NotificationService + NotificationDisplayControl.
Markup
@inject NotificationService Notifications
<ButtonControl CssClass="btn-primary"
OnClick="@(() => Notifications.Info("Message"))">Info</ButtonControl>
<!-- Place once near root layout -->
<NotificationDisplayControl />
Service registration
// Program.cs
builder.Services.AddScoped<NotificationService>();