I have a button who's animation works as it should until I add an onPress event. Once the onPress is added, there is no feedback when I press the button.
I am using NativeBase for the button (although I don't think this should matter) and redux for the action to occur.
<Button block primary onPress={() => this.props.onChangeDetails({id: this.props.report.report.details.id, inspection: true})}>
<Text style={nbStyles.buttonText}>Add Inspection Report</Text>
</Button>
const mapDispatchToProps = (dispatch) => {
return {
onChangeDetails: payload => {
dispatch(editDetails(payload))
}
}
}
Any ideas why I'm not seeing any animation?