Get rid of stackcontainer (for now)

This commit is contained in:
Krzysztof Magiera
2018-09-07 18:04:08 +02:00
parent d940a02fac
commit 8e13c58b6e
9 changed files with 5 additions and 338 deletions

View File

@@ -9,12 +9,12 @@ import {
import { createStackNavigator, createSwitchNavigator } from 'react-navigation';
import Stack from './stack';
import Container from './container';
import Tabs from './tabs';
import Navigation from './navigation';
const SCREENS = {
Stack: { screen: Stack, title: 'ScreenStack example' },
Container: { screen: Container, title: 'ScreenContainer example' },
Stack: { screen: Stack, title: 'Stack example' },
Tabs: { screen: Tabs, title: 'Tabs example' },
Navigation: { screen: Navigation, title: 'React Navigation example' },
};