Skip to content

Instantly share code, notes, and snippets.

@gigobyte
Created July 3, 2025 15:34
Show Gist options
  • Save gigobyte/f607dd7cac226ec15a73109451da0e98 to your computer and use it in GitHub Desktop.
Save gigobyte/f607dd7cac226ec15a73109451da0e98 to your computer and use it in GitHub Desktop.
const [isPressed, setIsPressed] = useState(false)
return (
<Pressable
onPressIn={() => setIsPressed(true)}
onPressOut={() => setIsPressed(false)}
onPress={() => console.log('not called')}
/>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment