diff --git a/src/Sample/Pages/Index.razor b/src/Sample/Pages/Index.razor index d26774c..b3f97c4 100644 --- a/src/Sample/Pages/Index.razor +++ b/src/Sample/Pages/Index.razor @@ -33,8 +33,8 @@
- + @@ -122,6 +122,8 @@ @code { private string _title = "Test Title"; private string _message = "Test Message"; + private string _positionClass; + private bool _showProgressBar; private bool _showCloseIcon; private bool _actionOnClick; @@ -148,6 +150,7 @@ public void Show(ToastType type) { + toaster.Configuration.PositionClass = _positionClass; toaster.Add(type, _message, _title, config => { config.ShowCloseIcon = _showCloseIcon;