Skip to content

Instantly share code, notes, and snippets.

React Native Workshop

by Harry Tormey

Instructor: Harry Tormey

Thank you for attending the workshop on React Native! Please read through this entire document and follow the steps to get set up. Please complete each step before the workshop starts to ensure that you are ready to go from the start!

Contents

1. Schedule
2. Set up the Dev Environment: 10 mins

// Copy the following into package.json in "dependencies":
"react-navigation": "^1.5.0",
"react-redux": "^5.0.6",
"redux": "~3.4.0",
"redux-thunk": "~2.1.0",

React Native Workshop

by Harry Tormey

Instructor: Harry Tormey

Thank you for attending the workshop on React Native! Please read through this entire document and follow the steps to get set up. Please complete each step before the workshop starts to ensure that you are ready to go from the start!

Contents

1. Schedule
2. Set up the Dev Environment: 10 mins

const coinAPIBaseURL = 'https://api.coinmarketcap.com';
componentDidMount() {
return fetch(`${coinAPIBaseURL}/v1/ticker/?limit=10`)
.then(response => response.json())
.then(responseJson => {
this.setState({
loading: false,
coins: responseJson
})
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
Platform,
StyleSheet,

React Native Workshop

by Harry Tormey

Instructor: Harry Tormey

Thank you for attending the workshop on React Native! Please read through this entire document and follow the steps to get set up. Please complete each step before the workshop starts to ensure that you are ready to go from the start!

Contents

1. Schedule
2. Set up the Dev Environment: 10 mins

{
"schedule": [
{
"type":"talk",
"speaker":"Jamon Holmgren",
"image":"panel",
"title":"Welcome to Chain React",
"description":"Welcome to our Conference! Greetings opening remarks",
"time":"7/10/2017 8:45 AM",
"duration":"5",
const coinData = [
{
"id": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"rank": "1",
"price_usd": "10153.7",
"price_btc": "1.0",
"24h_volume_usd": "8078040000.0",
"market_cap_usd": "170964192962",

React Native Workshop

by Harry Tormey

Instructor: Harry Tormey

Thank you for attending the workshop on React Native! Please read through this entire document and follow the steps to get set up. Please complete each step before the workshop starts to ensure that you are ready to go from the start!

Contents

1. Schedule
2. Set up the Dev Environment: 10 mins

@hgale
hgale / gist:e325abfb959877e375068e2b17b1c2bc
Last active February 28, 2023 14:08
Class requirements

React Native Workshop

by Harry Tormey

Instructor: Harry Tormey

Thank you for attending the workshop on React Native! Please read through this entire document and follow the steps to get set up. Please complete each step before the workshop starts to ensure that you are ready to go from the start!

Contents

1. Schedule
2. Pre-Workshop Questionnaire: 60 seconds