-
Notifications
You must be signed in to change notification settings - Fork 1
/
frontPage.js
68 lines (63 loc) · 1.97 KB
/
frontPage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import React, { Component } from 'react';
import { Button, Container, Card, Header, Content, CardItem,Left, Icon } from 'native-base';
import { Col, Row, Grid } from 'react-native-easy-grid';
import { StyleSheet, Text } from 'react-native';
export default class FrontPage extends Component {
routeToRoom (room) {
this.props.navigation.navigate('Chat', {
title: room
});
}
render() {
return (
<Container >
<Grid style = {styles.grid}>
<Col style = {{flex:1, alignitems: "flex-end"}} >
<Button style = {styles.button} large warning
onPress={() => { this.routeToRoom('Food'); }} >
<Text style= {{color:'white', fontSize: 25,}}>Food</Text>
</Button>
<Button style = {styles.button} large info
onPress={() => { this.routeToRoom('Sports'); }} >
<Text style={{color:'white', fontSize: 25,}}>Sports</Text>
</Button>
</Col>
<Col style={{flex:1, alignitems: "flex-end", width: 100,}}>
<Button style= {styles.button} large danger
onPress={() => { this.routeToRoom('Movies'); }} >
<Text style={{color:'white', fontSize:25}}>Movies</Text>
</Button>
<Button style= {styles.button} large success
onPress={() => { this.routeToRoom('Hiking'); }} >
<Text style={{color:'white', fontSize: 25,}}>Hiking</Text>
</Button>
</Col>
</Grid>
</Container>
);
}
}
const styles = StyleSheet.create({
title: {
textAlign:"center",
color: "black",
fontFamily: "Roboto",
fontWeight: "bold",
fontSize: 30,
},
grid: {
alignItems: "center",
},
row: {
margin: 0,
padding: 0,
color: "red",
},
button: {
width: 200,
justifyContent: "center",
color: "#FFFFFF",
flex: 1,
margin: 0,
}
});