I was trying to customize my Modal with onBackButtonPress prop. To check if it worked or not, I passed a console.log
to it like this:
<Modal onBackButtonPress={() => console.log('Something')}>
<NewRidesModal
//...
/>
</Modal>
But in fact, it doesn't even return anything whenever I press the Android back button. Why is he prop not returning any value at all? Is it deprecated?
I use this library too react-native-modal and onBackButtonPress is working fine. I face another issue, in my case onBackdropPress is not working, but after I fix my styling modal, everything working fine.
This is my example, Modal js
Style Modal js