Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 424 Bytes

prompt.md

File metadata and controls

25 lines (18 loc) · 424 Bytes

Prompt

Config

Theming/Defaults

  • PromptConfig
    • DefaultOkText
    • DefaultCancelText

Additional Functionality

new PromptConfig
{
    OnTextChanged = args => {
        args.IsValid = bool; // setting this to false will disable the OK/Positive button
        args.Text = ""; // you can read the current value as well as replace the textbox value here
    }
}

Text Max Length

Input Types