Skip to content

Commit

Permalink
added playground view on example app
Browse files Browse the repository at this point in the history
  • Loading branch information
Monte9 committed Jul 6, 2017
1 parent 681e9a3 commit ad913d9
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 4,044 deletions.
6 changes: 5 additions & 1 deletion example/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import Expo from 'expo';
import React from 'react';
import { View, Image, Dimensions } from 'react-native';
import { DrawerNavigator, DrawerItems } from 'react-navigation';
import { Icon } from 'react-native-elements';

import Home from './src/drawer/home';
import SwipeDecker from './src/drawer/swipe_decker';
import Ratings from './src/drawer/ratings';
import Pricing from './src/drawer/pricing';
import Playground from './src/drawer/playground';

const SCREEN_WIDTH = Dimensions.get('window').width;

Expand Down Expand Up @@ -44,6 +44,10 @@ const MainRoot = DrawerNavigator(
path: '/pricing',
screen: Pricing,
},
Playground: {
path: '/playground',
screen: Playground
}
},
{
initialRouteName: 'Home',
Expand Down
Loading

0 comments on commit ad913d9

Please sign in to comment.