Answers for "override backswipe behaviour in ios and android react native"

0

override backswipe behaviour in ios and android react native

useEffect(() => {
  const gestureEndListener = () => {
    console.log('iOS back gesture ended');
  };
  // https://reactnavigation.org/docs/3.x/navigation-events
  const gestureHandler = navigation.addListener('didBlur', gestureEndListener);
  return () => {
    gestureHandler.remove();
  };
}, []);
Posted by: Guest on August-27-2021

Code answers related to "override backswipe behaviour in ios and android react native"

Code answers related to "Javascript"

Browse Popular Code Answers by Language