You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var message = "This is a message sent from the C# method.";
var toastSettings = new ToastSettings
{
Position = Blazored.Toast.Configuration.ToastPosition.TopCenter
};
This does not work
var message = "This is a message sent from the C# method.";
var toastSettings = new ToastSettings
{
Position = Blazored.Toast.Configuration.ToastPosition.TopCenter
};
toastService.ShowInfo(message, toastSettings);
But this does?
toastService.ShowInfo(message, settings => { settings.Position = Blazored.Toast.Configuration.ToastPosition.TopCenter; });
The text was updated successfully, but these errors were encountered: