An input row that is typically used when you want to allow the user to select a value from another ListView. In essence, this is very similar to a standard TouchableRow. In the future, we may consider combining the two.
type: string
defaultValue: 'white'
type: node
type: string
type: string
defaultValue: 'default'
type: bool
defaultValue: false
type: string
<InputGroup mb={0} mt={3} label='TOUCHABLE INPUT'>
<TouchableInput
editable={this.state.editable}
onPress={() => {
console.log('baby baby baby, noo!')
}}
showMore
label='With Label'
/>
<TouchableInput
editable={this.state.editable}
onPress={() => {
console.log('baby baby baby, noo!')
}}
showMore
value='And Value'
label='With Label'
/>
</InputGroup>