We recommend implementing a single instance of <Toaster>
in global scope of your app, typically within a root layout. This single instance will manage a toast group with a toaster
instance (via createToaster
). Style props applied to the <Toaster>
component are applied all child toasts created within that instance.
Type
You can use the generic create()
method in combination with a specific type, or opt for the shorthand methods if preferred: info()
, success()
, warning()
, or error()
.
Placement
Use the placement
prop on <Toaster>
to set the position of the toast group.
Promise
Use promise()
to create a toast that is able to be configured based on the state of a promise. The toast will automatically update based on the state of the promise.
API Reference
Toaster
Property | Type | Description |
---|---|---|
toaster * | ToastStore<any> | |
base | string | |
width | string | |
padding | string | |
rounded | string | |
classes | string | |
messageBase | string | |
messageClasses | string | |
titleBase | string | |
titleClasses | string | |
descriptionBase | string | |
descriptionClasses | string | |
btnDismissBase | string | |
btnDismissClasses | string | |
stateInfo | string | |
stateSuccess | string | |
stateWarning | string | |
stateError | string | |
placement | Placement | |
max | number | |
overlap | boolean | |
duration | number | |
gap | number | |
offsets | string | Record<"top" | "bottom" | "left" | "right", string> | |
hotkey | string[] | |
removeDelay | number | |
pauseOnPageIdle | boolean | |
Toast
Property | Type | Description |
---|---|---|
toast * | Options<any> | |
index * | number | |
parent * | ToastGroupService | |
max | number | |
base | string | |
width | string | |
padding | string | |
rounded | string | |
classes | string | |
messageBase | string | |
messageClasses | string | |
titleBase | string | |
titleClasses | string | |
descriptionBase | string | |
descriptionClasses | string | |
btnDismissBase | string | |
btnDismissClasses | string | |
stateInfo | string | |
stateSuccess | string | |
stateWarning | string | |
stateError | string | |
placement | Placement | |
overlap | boolean | |
duration | number | |
gap | number | |
offsets | string | Record<"top" | "bottom" | "left" | "right", string> | |
hotkey | string[] | |
removeDelay | number | |
pauseOnPageIdle | boolean | |
Alternatives
If you’re looking for power user features or more control over templates, consider using Svelte-French-Toast.