Name |
Type |
Default value |
Description |
---|
AutoDismiss |
bool |
false |
Whether or not automatically dismiss the snack bar. |
AutoDismissTime |
TimeSpan? |
null |
How long does it take to automatically dismiss the snack bar (default is 3 seconds). |
BodyTemplate |
RenderFragment<string>? |
null |
Used to customize how the content inside the body is rendered. |
Classes |
BitSnackBarClassStyles? |
null |
Custom CSS classes for different parts of the snack bar. |
DismissIconName |
string? |
null |
The icon name of the dismiss button. |
Multiline |
bool |
false |
Enables the multiline mode of both title and body. |
OnDismiss |
EventCallback |
|
Callback for when any snack bar is dismissed. |
Position |
BitSnackBarPosition? |
null |
The position of the snack bars to show. |
Styles |
BitSnackBarClassStyles? |
null |
Custom CSS styles for different parts of the snack bar. |
TitleTemplate |
RenderFragment<string>? |
null |
Used to customize how content inside the title is rendered. |
Name |
Type |
Default value |
Description |
---|
Show |
async Task Show(string title, string? body = "", BitColor color = BitColor.Info, string? cssClass = null, string? cssStyle = null) |
|
Shows the snackbar. |
Info |
Task Info(string title, string? body = "") |
|
Shows the snackbar with Info color. |
Success |
Task Success(string title, string? body = "") |
|
Shows the snackbar with Success color. |
Warning |
Task Warning(string title, string? body = "") |
|
Shows the snackbar with Warning color. |
SevereWarning |
Task Warning(string title, string? body = "") |
|
Shows the snackbar with SevereWarning color. |
Error |
Task Error(string title, string? body = "") |
|
Shows the snackbar with Error color. |
Name |
Type |
Default value |
Description |
---|
AriaLabel |
string? |
null |
The aria-label of the control for the benefit of screen readers. |
Class |
string? |
null |
Custom CSS class for the root element of the component. |
Dir |
BitDir? |
null |
Determines the component direction. |
HtmlAttributes |
Dictionary<string, object> |
new Dictionary<string, object>() |
Capture and render additional attributes in addition to the component's parameters. |
Id |
string? |
null |
Custom id attribute for the root element. if null the UniqueId will be used instead. |
IsEnabled |
bool |
true |
Whether or not the component is enabled. |
Style |
string? |
null |
Custom CSS style for the root element of the component. |
Visibility |
BitVisibility |
BitVisibility.Visible |
Whether the component is visible, hidden or collapsed. |