UI Hints
Using UI Hints
[Input(
Description = "Choose to download one file or entire folder",
DefaultValue = "File",
Options = new[] { "File", "Folder" },
UIHint = InputUIHints.RadioList
)]
public Input<string> SelectedRadioOption { get; set; } = default!;Examples
Checkbox
// Some codeChecklist
Last updated