Notifications appear at the edge of the screen and automatically dismiss after a configurable duration. You create them by callingDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Footagesus/WindUI/llms.txt
Use this file to discover all available pages before exploring further.
WindUI:Notify(Config).
Basic usage
Parameters
The heading text displayed in the notification.
Body text shown below the title. Supports RichText markup.
Icon name (e.g.
"solar:bell-bold") or rbxassetid:// URL displayed on the left side.When
true, the icon tint follows the current theme’s text color.An image URL (
rbxassetid://) used as the notification background.Transparency of the background image.
0 is fully opaque, 1 is invisible.Seconds before the notification auto-dismisses. A progress bar tracks the remaining time.
When
true, an × button is rendered so the user can dismiss the notification early.
Set to false to hide the close button.An array of button config tables rendered at the bottom of the notification. Each button supports the same
Title, Icon, Variant, and Callback fields as dialog buttons.Examples
Basic notification
Basic notification
With icon and custom duration
With icon and custom duration
Without a close button
Without a close button
Triggered from a button callback
Triggered from a button callback
Mobile offset
On mobile, the open button sits at the bottom of the screen. CallWindUI:SetNotificationLower(true) to shift the notification stack upward so it does not overlap the button.
WindUI:SetNotificationLower(false) to reset to the default position.
SetNotificationLower affects the entire notification holder, not individual notifications. Call it once after creating your window.Return value
WindUI:Notify() returns the notification object. You can dismiss it programmatically by calling :Close().