Introducing
About WindUI
Setup
LoadstringThemes
UI
WindowKey SystemTabDialogPopupNotificationTagTab Section
Elements
SectionButtonToggleSliderInputDropdownParagraphKeybindColorpickerCodeDividerSpaceImageGroup (deprecated)HStack & VStack
Advanced
ConfigsIcons

Divider

Add visual dividers between elements

Divider Element

Dividers are visual separators used to organize and group elements visually.

Your_Tab:Divider()

Usage Examples

Separate Sections

Tab:Button({ Title = "Option 1" })
Tab:Button({ Title = "Option 2" })
 
Tab:Divider() -- visual separator
 
Tab:Button({ Title = "Option 3" })
Tab:Button({ Title = "Option 4" })

Organize Content

Tab:Paragraph({
    Title = "Basic Features",
    Desc = "Core functionality"
})
 
Tab:Button({ Title = "Feature 1" })
Tab:Button({ Title = "Feature 2" })
 
Tab:Divider()
 
Tab:Paragraph({
    Title = "Advanced Features",
    Desc = "Expert options"
})
 
Tab:Button({ Title = "Feature 3" })
Tab:Button({ Title = "Feature 4" })
  • Tab - Tab container
  • Space - Add spacing between elements
  • Section - Group elements in collapsible sections