-
Notifications
You must be signed in to change notification settings - Fork 0
/
stages.js
40 lines (38 loc) · 1.73 KB
/
stages.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
import React from 'react';
import { View, Text, TouchableOpacity } from 'react-native';
import { estilos } from '../css/styles';
const StagesPage = () => {
return (
<View style={estilos.container}>
<View style={estilos.containerHeader}>
<Text style={estilos.title}>Stages Page</Text>
</View>
<View style={estilos.containerForm}>
<TouchableOpacity style={estilos.button} onPress={() => console.log('Login pressed')}>
<Text style={estilos.buttonText}>Login</Text>
</TouchableOpacity>
<TouchableOpacity style={estilos.button} onPress={() => console.log('Home pressed')}>
<Text style={estilos.buttonText}>Home</Text>
</TouchableOpacity>
<TouchableOpacity style={estilos.button} onPress={() => console.log('Library pressed')}>
<Text style={estilos.buttonText}>Library</Text>
</TouchableOpacity>
<TouchableOpacity style={estilos.button} onPress={() => console.log('Social pressed')}>
<Text style={estilos.buttonText}>Social</Text>
</TouchableOpacity>
<TouchableOpacity style={estilos.button} onPress={() => console.log('Courses pressed')}>
<Text style={estilos.buttonText}>Courses</Text>
</TouchableOpacity>
<TouchableOpacity style={estilos.button} onPress={() => console.log('App pressed')}>
<Text style={estilos.buttonText}>App</Text>
</TouchableOpacity>
</View>
<View style={estilos.gradientBackground}>
<TouchableOpacity style={estilos.gradientButton} onPress={() => console.log('Interagir pressed')}>
<Text style={estilos.gradientButtonText}>Interagir</Text>
</TouchableOpacity>
</View>
</View>
);
};
export default StagesPage;