I have the following React Native ListItem and the onPress is not logging to the console:
<ListItem
rightIcon={{name: 'delete', style: {color: 'white'}}}
component={TouchableHighlight}
containerStyle={styles[item.foodType]}
title={<Text style={styles[item.foodType]}>{item.amount} {item.foodType} <FormattedDateTime epoch={item.when}/></Text>}>
onPress={() => console.log("Feeding", item) }
</ListItem>
Everything else works fine, list looks good, etc...
Why do I not see the message?