-
Notifications
You must be signed in to change notification settings - Fork 0
/
PageOne.js
21 lines (20 loc) · 1019 Bytes
/
PageOne.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import React, { Component } from 'react';
import { View, Text, ScrollView } from 'react-native';
import { Actions } from 'react-native-router-flux';
export default class PageOne extends Component {
render() {
return (
<ScrollView style={{marginTop: 100, marginLeft: 100}}>
<Text style={{margin: 20}}>Welcome to Gruup Up!</Text>
<Text style={{margin: 20}} onPress={Actions.login}>Log In!</Text>
<Text style={{margin: 20}} onPress={Actions.signup}>Sign Up!</Text>
<Text style={{margin: 20}} onPress={Actions.updateuser}>Update User</Text>
<Text style={{margin: 20}} onPress={Actions.welcome}>Welcome</Text>
<Text style={{margin: 20}} onPress={Actions.searchresults}>Search Results</Text>
<Text style={{margin: 20}} onPress={Actions.eventpage}>Result</Text>
<Text style={{margin: 20}} onPress={Actions.createevent}>Create Event</Text>
<Text style={{margin: 20}} onPress={Actions.tabbed}>Tabbed Page</Text>
</ScrollView>
)
}
}