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

Input

Create text input fields in WindUI

Input Element

Input fields allow users to enter text data. They support both single-line and multi-line (textarea) inputs.

local Input = Tab:Input({
    Title = "Username",
    Callback = function(text)
        print("Input:", text)
    end
})

Input Parameters

NameDefault
: stringInput
: string?nil
: string?nil
: string?Default
: string?nil
: string?empty
: boolean?false
: string?nil
: function?nil

Input Functions

Name
()
()
()
()
()
()
()

Input Variants

Textarea Input

Tab:Input({
    Title = "Description",
    Type = "Textarea",
    Placeholder = "Enter detailed description...",
    Callback = function(text)
        print("Description:", text)
    end
})

Input with Icon

Tab:Input({
    Title = "Icon Input",
    Icon = "key",
    Callback = function(v)
        print("Entered", v)
    end
})