![]() |
VOOZH | about |
dotnet add package Blazored.Toast --version 4.2.1
NuGet\Install-Package Blazored.Toast -Version 4.2.1
<PackageReference Include="Blazored.Toast" Version="4.2.1" />
<PackageVersion Include="Blazored.Toast" Version="4.2.1" />Directory.Packages.props
<PackageReference Include="Blazored.Toast" />Project file
paket add Blazored.Toast --version 4.2.1
#r "nuget: Blazored.Toast, 4.2.1"
#:package Blazored.Toast@4.2.1
#addin nuget:?package=Blazored.Toast&version=4.2.1Install as a Cake Addin
#tool nuget:?package=Blazored.Toast&version=4.2.1Install as a Cake Tool
This is a JavaScript free toast implementation for Blazor and Razor Components applications. It supports icons that are either specified by class name (such as fontawesome) or by a specified element (Material Design).
👁 Nuget version
👁 Nuget downloads
👁 Build & Test Main
To install the package add the following line to you csproj file replacing x.x.x with the latest version number (found at the top of this file):
<PackageReference Include="Blazored.Toast" Version="x.x.x" />
You can also install via the .NET CLI with the following command:
dotnet add package Blazored.Toast
If you're using Visual Studio or JetBrains Rider you can also install via the built in NuGet package manager.
You will need to register the Blazored Toast service with the service collection in your Program.cs file.
builder.Services.AddBlazoredToast();
Add the following to your _Imports.razor
@using Blazored.Toast
@using Blazored.Toast.Services
Blazored Toast uses CSS isolation. If your application is already using CSS isolation then the styles for Toast will be included automatically and you can skip this step. However, if your application isn't using isolated CSS, you will need to add a reference to the CSS bundle. You can checkout the Microsoft Docs for additional details.
<link href="{YOUR APP ASSEMBLY NAME}.styles.css" rel="stylesheet">
Presumably, if you want to use the Material Icons your project already includes some form of the icons. If not see Material Design Icons for the available alternatives.
Add the <BlazoredToasts /> tag into your applications MainLayout.razor.
Toasts are configured using parameters on the <BlazoredToasts /> component. The following options are available.
IconType.Blazored)ToastPosition.TopRight)int.MaxValue)true)false)By default, you don't need to provide any settings everything will just work. But if you want to add icons to toasts or override the default styling then you can use the options above to do that.
For example, to add an icon from Font Awesome to all success toasts you can do the following:
<BlazoredToasts IconType="IconType.FontAwesome" SuccessIcon="fa fa-thumbs-up"/>
Setting the position also requires a reference to Blazored.Toast.Configuration, for example:
@using Blazored.Toast.Configuration
<BlazoredToasts Position="ToastPosition.BottomRight"
Timeout="10"
IconType="IconType.FontAwesome"
SuccessClass="success-toast-override"
SuccessIcon="fa fa-thumbs-up"
ErrorIcon="fa fa-bug" />
If you want to have your own custom close button, that can be configured via the CloseButtonContent parameter:
<BlazoredToasts Position="ToastPosition.BottomRight"
Timeout="10">
<CloseButtonContent>
<div>
<span>×</span>
</div>
</CloseButtonContent>
</BlazoredToasts>
In order to show a toast you have to inject the IToastService into the component or service you want to trigger a toast. You can then call one of the following methods depending on what kind of toast you want to display, passing in a message and an optional heading.
ShowInfoShowSuccessShowWarningShowError@page "/toastdemo"
@inject IToastService toastService
<h1>Toast Demo</h1>
To show a toast just click one of the buttons below.
<button class="btn btn-info" @onclick="@(() => toastService.ShowInfo("I'm an INFO message"))">Info Toast</button>
<button class="btn btn-success" @onclick="@(() => toastService.ShowSuccess("I'm a SUCCESS message with a custom title"))">Success Toast</button>
<button class="btn btn-warning" @onclick="@(() => toastService.ShowWarning("I'm a WARNING message"))">Warning Toast</button>
<button class="btn btn-danger" @onclick="@(() => toastService.ShowError("I'm an ERROR message"))">Error Toast</button>
You can display a progress bar which gives a visual indicator of the time remaining before the toast will disappear. In order to show the progress bar set the ShowProgressBar parameter to true.
<BlazoredToasts Position="ToastPosition.BottomRight"
Timeout="10"
ShowProgressBar="true" />
If you wish to clear any visible toasts when the user navigates to a new page you can enable the RemoveToastsOnNavigation parameter. Setting this to true will remove any visible toasts whenever the LocationChanged event fires.
If you want to limit the number of toasts displayed at any given time, you can set the MaxToastCount parameter. For example, if the value is set to 3 only three toast instances will be displayed. Any additional toasts that are triggered will be held in a queue and will be displayed as older toasts time out.
You can call the ShowToast method passing the type of component you want the toast to display.
For example if I have a component called MyToast which I want to display in the toast and I want to call it from the Index component on a button click.
@page "/toastdemo"
@inject IToastService toastService
<h1>Custom Toast Demo</h1>
<button class="btn btn-primary" @onclick="@(() => toastService.ShowToast<MyToast>())">Custom Toast</button>
If you want to pass values to the component you're displaying in the toast, then you can use the ToastParameters object. The name you provide must match the name of a parameter defined on the component being displayed.
@page "/toastdemo"
@inject IToastService toastService
<h1>Custom Toast Demo</h1>
<button class="btn btn-primary" @onclick="@(() => toastService.ShowToast<MyToast>(_toastParameters))">Custom Toast with parameters</button>
@code
{
private ToastParameters _toastParameters;
protected override void OnInitialized()
{
_toastParameters = new ToastParameters();
_toastParameters.Add(nameof(MyToast.Heading), "MyToast heading");
_toastParameters.Add(nameof(MyToast.Message), "MyToast message");
}
}
Custom toast components can be customized. These settings can be set globally or changed programatically on a per toast basis. This is achieved using the ToastInstanceSettings class.
The following settings are available.
TimeoutShowProgressBarFor Example if you want to change the duration of the timeout and disable the progress bar.
@page "/toastdemo"
@inject IToastService toastService
<h1>Custom Toast Demo</h1>
<button class="btn btn-primary" @onclick="@(() => toastService.ShowToast<MyToast>(new ToastInstanceSettings(5, false)))">Custom Toast</button>
Full examples for Blazor WebAssembly and Blazor Interactive Server are included in the samples.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 is compatible. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 5 NuGet packages that depend on Blazored.Toast:
| Package | Downloads |
|---|---|
|
BlazingApple.Components
BlazingApple is a collection of business objects and corresponding components to speed application development. BlazingApple.Components provides a set of core components to easily create beautiful applications |
|
|
Bluefish.Blazor
A collection of useful Razor components |
|
|
Lookif.UI.Component
Some predefined components. It contains: *Crud page *Form *Dropdown - Selective *Grid ---- Blazored.Modal and Blazored.Toast are used in this project. |
|
|
chd.UI.Base.Client
Package Description |
|
|
CodeBlock.DevKit.Web.Blazor.Server
CodeBlock Development Kit |
Showing the top 15 popular GitHub repositories that depend on Blazored.Toast:
| Repository | Stars |
|---|---|
|
dotnet-architecture/eShopOnDapr
A sample .NET distributed application based on eShopOnContainers, powered by Dapr.
|
|
|
MUnique/OpenMU
This project aims to create an easy to use, extendable and customizable server for a MMORPG called "MU Online".
|
|
|
DragoQCC/CrucibleC2
A C# Command & Control framework
|
|
|
hamed-shirbandi/TaskoMask
Task management system based on .NET 8 with Microservices, DDD, CQRS, Event Sourcing and Testing Concepts
|
|
|
mspnp/AzureNamingTool
The Azure Naming Tool is a .NET 10 Blazor application with a RESTful API for generating and validating Azure resource names. Features include SQLite database support, drag-and-drop configuration, Azure tenant validation, and API V2 with bulk operations.
|
|
|
CuriousDrive/BlazingChat
BlazingChat is a Blazor WebAssembly app developed by CuriousDrive for the community. This is a sample application for developers who are just getting started with Blazor.
|
|
|
Jcparkyn/nodexr
Graphical regular expression editor
|
|
|
linkdotnet/Blog
A blog (engine) completely written in C# and Blazor. It aims to be a simple use and easy to extend platform. Blogposts are written in Markdown and are rendered to HTML. This gives all the flexibility needed to express yourself but also have an easy way of creating posts in the first place.
|
|
|
kalintsenkov/BlazorShop
ASP.NET Core | Blazor WebAssembly | Simple Shop application
|
|
|
adambajguz/Typin
Declarative framework for interactive CLI applications
|
|
|
ADefWebserver/Blazor-Blogs
Simple blogging application written in Microsoft Server Side Blazor
|
|
|
dotnet/nuget-trends
Check out NuGet packages adoption and what's trending on NuGet.
|
|
|
trevoirwilliams/HR.LeaveManagement.Clean
Educational .NET Core Leave Management System built using Clean Architecture
|
|
|
marinasundstrom/YourBrand
Prototype enterprise system for e-commerce and consulting services
|
|
|
KirovAir/muxarr
Quick and easy way to strip unwanted audio and subtitle tracks from your media files.
|
| Version | Downloads | Last Updated |
|---|