nysamnang / react-native-raw-bottom-sheet

Add Your Own Component To Bottom Sheet Whatever You Want (Android and iOS)

Home Page:https://npmjs.com/package/react-native-raw-bottom-sheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BackEvent is not firing inside bottomsheet when system default back event is pressed

eagleblack opened this issue · comments

useFocusEffect(
React.useCallback(() => {
const onBackPress = () => {
console.log("Hey")
};

const subscription = BackHandler.addEventListener('hardwareBackPress', onBackPress);

return () => subscription.remove();

}, [])
);