Skip to content

Function: RadioList()

ts
function RadioList(props: UiRadioListFieldProps): Block;

Defined in: src/renderer/blocks/index.ts:867

Parameters

ParameterType
propsUiRadioListFieldProps

Returns

Block

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'},
  ],
});

Matterway Assistant SDK Documentation