Skip to content

Instantly share code, notes, and snippets.

View jsfroth's full-sized avatar

Josef Roth jsfroth

View GitHub Profile
@jsfroth
jsfroth / react-navigation-actions-example.js
Created July 21, 2017 11:51
react-navigation-actions example
import React from 'react';
import { AppRegistry, Button, Text } from 'react-native';
import { StackNavigator } from 'react-navigation';
import { getStateForAction, replace } from 'react-navigation-actions';
class HomeScreen extends React.Component {
static navigationOptions = {
title: 'Home',
};