Checkbox component for boolean values
using consentField = app.scene(Checkbox, { defaultProps: { id: 'consent', label: 'I consent to participate in this study', validate: (value) => value || 'You must provide consent to continue', },});const data = await consentField.show();console.log(data.value); // boolean Copy
using consentField = app.scene(Checkbox, { defaultProps: { id: 'consent', label: 'I consent to participate in this study', validate: (value) => value || 'You must provide consent to continue', },});const data = await consentField.show();console.log(data.value); // boolean
Checkbox component for boolean values