Created
August 20, 2017 19:25
-
-
Save brookslyrette/c2d035a7b9e749158beff051f4be44b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import { StyleSheet, Text, View } from 'react-native'; | |
| const Screen1 = () => (<View style={styles.container}><Text>Screen 1</Text></View>) | |
| const Screen2 = () => (<View style={styles.container}><Text>Screen 2</Text></View>) | |
| const Screen3 = () => (<View style={styles.container}><Text>Screen 3</Text></View>) | |
| const styles = StyleSheet.create({ | |
| container: { | |
| flex: 1, | |
| backgroundColor: '#fff', | |
| alignItems: 'center', | |
| justifyContent: 'center', | |
| }, | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment