Radio button component for boolean selection (typically used in groups)
using yesOption = app.scene(Radio, { defaultProps: { id: 'response_yes', label: 'Yes', defaultValue: false, },});const data = await yesOption.show();console.log(data.value); // boolean Copy
using yesOption = app.scene(Radio, { defaultProps: { id: 'response_yes', label: 'Yes', defaultValue: false, },});const data = await yesOption.show();console.log(data.value); // boolean
Experimental
Radio button component for boolean selection (typically used in groups)
Example