Skip to content

Instantly share code, notes, and snippets.

@ecavalcanti
Last active October 17, 2017 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecavalcanti/466268f538cd03e3cbcf8d7c69941251 to your computer and use it in GitHub Desktop.
Save ecavalcanti/466268f538cd03e3cbcf8d7c69941251 to your computer and use it in GitHub Desktop.
import React from 'react'
import { StatusBar, Platform } from 'react-native'
import Home from './src/screens/Home'
import Description from './src/screens/Description'
import { StackNavigator } from 'react-navigation'
const App = StackNavigator({
Home: {
screen: Home
},
Description: {
screen: Description
},
},
{
cardStyle: {
paddingTop: Platform.OS === 'ios' ? 0 : StatusBar.currentHeight
}
})
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment