18 lines
518 B
Plaintext
18 lines
518 B
Plaintext
@page "/"
|
|
|
|
@inject ISnackbar Snackbar
|
|
|
|
<PageTitle>Home</PageTitle>
|
|
|
|
<MudButton @onclick="@AddSnackbar" Color="Color.Primary" Variant="Variant.Filled">Test button</MudButton>
|
|
|
|
<MudButton @onclick="@(() => Snackbar.Add("My Close button is gone!", Severity.Normal, config => { config.ShowCloseIcon = false; }))" Variant="Variant.Filled" Color="Color.Primary">
|
|
Open modified snackbar
|
|
</MudButton>
|
|
|
|
@code {
|
|
private void AddSnackbar()
|
|
{
|
|
Snackbar.Add("Welcome to Imperial Recruitment.", Severity.Info);
|
|
}
|
|
} |