diff options
| author | AndrewMihai <41450954+AndrewMihai@users.noreply.github.com> | 2019-03-05 00:05:35 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-05 00:05:35 +0000 |
| commit | 18cfcf14ea982d3277d819b88b0dd4df96da40d0 (patch) | |
| tree | 30c43573bff96c92d8c6c2b6c212a344d89fb96a /mobile/App.js | |
| parent | 4c0c485c37eaa5dda07c31947d4d11e18448f943 (diff) | |
| parent | 9438381045c142d38bd1aa28c307723fdb016e4a (diff) | |
Merge pull request #13 from csc301-winter-2019/feat/5
Feat/5
Diffstat (limited to 'mobile/App.js')
| -rw-r--r-- | mobile/App.js | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/mobile/App.js b/mobile/App.js index 7271bc2..4348381 100644 --- a/mobile/App.js +++ b/mobile/App.js @@ -1,17 +1,16 @@ import React, { Component } from 'react'; -import { Text, View } from 'react-native'; +import { Text, View, Alert, StyleSheet, Button, AppRegistry, Navigator, TouchableHighlight} from 'react-native'; +import { Ionicons } from '@expo/vector-icons'; +import { createStackNavigator, createAppContainer } from 'react-navigation'; -export default class HelloWorldApp extends Component { - //Every component needs a render() function - render() { - return ( - //<View> acts like the way <div> does in JavaScript - //style={...} stores properties about where you want the component to be placed - //and how you want it to look. It's similar to adding CSS styles to HTML elements - //when creating web pages - <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}> - <Text>Hello world!</Text> - </View> - ); - } -} +import GreetingPage from './components/GreetingPage'; +import FormPage from './components/FormPage'; + + +const RootStack = createStackNavigator( {GreetingPage: GreetingPage, FormPage: FormPage,}, + {headerMode: 'none'}) + +const App = createAppContainer(RootStack) + +export default App; + |
