Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Last active March 10, 2018 20:28
Show Gist options
  • Save ShMcK/ad668f95e9dd4e7e4034a527469ae6a9 to your computer and use it in GitHub Desktop.
Save ShMcK/ad668f95e9dd4e7e4034a527469ae6a9 to your computer and use it in GitHub Desktop.
expo-pn-listener
import { Notifications } from 'expo'
Notifications.addListener(async ({ data, origin }) => {
if (origin === 'received') {
// trigger modal
} else if (origin === 'selected') {
// route to page with linked data
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment