What events are available for the NativeBase components?
Say for example,
What other events those mentioned in React Native are supported with the NativeBase components?
This should be as simple as using the onPress method props on the button component:
<Button style={{ backgroundColor: 'grey'}} onPress={() =>alert('Add payment')} block >
<Icon name="ios-add-circle-outline" />
ADD PAYMENT
</Button>