/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { StyleSheet, Text, TouchableOpacity, View } from 'react-native'; import PushController from "./PushController"; import firebaseClient from "./FirebaseClient"; export default class App extends Component { constructor(props) { super(props); this.state = { token: "" } } render() { let { token } = this.state; return ( this.setState({token: token || ""})} /> Welcome to Simple Fcm Client! Token: {this.state.token} firebaseClient.sendNotification(token)} style={styles.button}> Send Notification firebaseClient.sendData(token)} style={styles.button}> Send Data ); } } const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: '#F5FCFF', }, welcome: { fontSize: 20, textAlign: 'center', margin: 10, }, instructions: { textAlign: 'center', color: '#333333', marginBottom: 5, }, button: { backgroundColor: "teal", paddingHorizontal: 20, paddingVertical: 10, marginVertical: 5, borderRadius: 10 }, buttonText: { color: "white", backgroundColor: "transparent" }, });