Skip to content

Commit

Permalink
Organised Project files into folders
Browse files Browse the repository at this point in the history
  • Loading branch information
nathvarun committed Jan 23, 2018
1 parent 500de59 commit 5b131da
Show file tree
Hide file tree
Showing 15 changed files with 53 additions and 17 deletions.
43 changes: 26 additions & 17 deletions App.js
Original file line number Diff line number Diff line change
@@ -1,28 +1,37 @@
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import { StackNavigator } from 'react-navigation'
import MainScreen from './Components/MainScreen'
import React, { Component } from "react";
import {
View,
Text,
StyleSheet
} from "react-native";

export default class App extends React.Component {
import { List, ListItem } from 'native-base'

class App extends Component {
render() {
return (
<AppStackNavigator />
<View style={styles.container}>
<List>
<ListItem>
<Text>Copy the project files from the respective folder into the Root of the app </Text>
</ListItem>
<ListItem>
<Text> Run npm install </Text>
</ListItem>
<ListItem>
<Text> Thats it!</Text>
</ListItem>
</List>
</View >
);
}
}

const AppStackNavigator = StackNavigator({

Main: {
screen: MainScreen
}
})
export default App;

const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
justifyContent: 'center'
}
});
27 changes: 27 additions & 0 deletions Project Files/01. Instagram Clone/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import React, { Component } from "react";
import {
View,
Text,
StyleSheet
} from "react-native";

class App extends Component {
render() {
return (
<View style={styles.container}>
<Text>Copy the project files from respective project files folder into the Root of the app.</Text>
<Text> Run npm install </Text>
<Text> Thats it ! </Text>
</View>
);
}
}
export default App;

const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center'
}
});
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Project Files/01. Instagram Clone/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Project Files/01. Instagram Clone/assets/me.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 5b131da

Please sign in to comment.