Tutorial by Examples

Create new project PushNotification react-native init PushNotification Put following in index.android.js import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View, Button } from 'react-native'; import PushNotification from 'react-native-push-no...
Here's a simple example to demonstrate that how can we jump/open a specific screen based on the notification. For example, when a user clicks on the notification, the app should open and directly jump to notifications page instead of home page. 'use strict'; import React, { Component } from 'rea...

Page 1 of 1