Appearance
Function: RadioList()
ts
function RadioList(props: UiRadioListFieldProps): Block;Defined in: src/renderer/blocks/index.ts:867
Parameters
| Parameter | Type |
|---|---|
props | UiRadioListFieldProps |
Returns
Deprecated
Use RadioListField instead — names now match the underlying UiRadioListField component.
Example
ts
RadioListField({
name: 'preferredContact',
label: 'Preferred contact method',
items: [
{value: 'email', label: 'Email'},
{value: 'phone', label: 'Phone'},
],
});