<ScrollView style={styles.container}>
...
<SegmentedPicker
ref={this.segmentedPicker}
onConfirm={(selections) => alert(JSON.stringify(selections))}
options={[
{
key: 'col_1',
items: [
{ label: 'Option 1', value: 'option_1' },
{ label: 'Option 2', value: 'option_2' },
],
},
{
key: 'col_2',
items: [
{ label: 'Option 3', value: 'option_3' },
],
},
]}
/>
</ScrollView>