Skip to content

Instantly share code, notes, and snippets.

View johnkyony's full-sized avatar

john kyony johnkyony

  • korujams
  • capetown
View GitHub Profile
@johnkyony
johnkyony / BottomTabNavigator.js
Created January 21, 2020 08:57
React Native - Tab Navigation (removing labels)
import React from 'react';
import {View,Text} from 'react-native';
import { createBottomTabNavigator } from 'react-navigation-tabs';
import ScreenOne from '../screens/ScreenOne';
import ScreenTwo from '../screens/ScreenTwo';
const BottomTabNavigator = createBottomTabNavigator({
One: ScreenOne,
Two: ScreenTwo
@johnkyony
johnkyony / README.md
Created January 21, 2020 08:57
React Native - Tab Navigation (Screens)

Full repository here.

@johnkyony
johnkyony / README.md
Created February 8, 2018 22:25
Installing React-Native on Ubuntu

First, you'll need NodeJS and NPM:

sudo apt install curl
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
nodejs -v
v8.4.0