Skip to content

Instantly share code, notes, and snippets.

@nazrdogan
Created February 11, 2019 21:41
Show Gist options
  • Save nazrdogan/5664788dfb64867d69010462071b8479 to your computer and use it in GitHub Desktop.
Save nazrdogan/5664788dfb64867d69010462071b8479 to your computer and use it in GitHub Desktop.
import React from "react";
import { View, Text } from "react-native";
import { createStackNavigator, createAppContainer } from "react-navigation";
class HomeScreen extends React.Component {
render() {
return (
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Text>Home Screen</Text>
</View>
);
}
}
const AppNavigator = createStackNavigator({
Home: {
screen: HomeScreen
}
});
export default createAppContainer(AppNavigator);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment