Skip to content

Instantly share code, notes, and snippets.

View LFSCamargo's full-sized avatar
🕶️
Sunny Days Are Coming

Luiz Fernando Sousa Camargo LFSCamargo

🕶️
Sunny Days Are Coming
View GitHub Profile
@LFSCamargo
LFSCamargo / PresenceManager.js
Created December 27, 2018 17:54
Presence manager with pubnub
// @flow
import React, { Component } from 'react';
import { View } from 'react-native';
import PubNubReact from 'pubnub-react';
import { connect } from 'react-redux';
import addContacts from '../actions/Contacts/AddContacts';
import sendRemoteMessage from '../actions/Messaging/AddRemoteMessages';
import { Contact } from '../reducers/Contacts/Contacts';
import { Messaging } from '../reducers/Messaging/Messaging';
import idx from 'idx';
@LFSCamargo
LFSCamargo / Video.js
Last active December 27, 2018 17:49
Code for the webRTC on React native
// @flow
import React, { Component } from 'react';
import {
View,
Text,
StyleSheet,
Dimensions,
TouchableOpacity,
Image,
StatusBar,