This commit is contained in:
João Borges 2019-03-18 19:37:14 +00:00
parent 9cd9a49c9b
commit cfec25fc5a
2 changed files with 70 additions and 78 deletions

View File

@ -28,23 +28,24 @@ import Email from '../components/Email';
import Separator from '../components/Separator';
import Tel from '../components/Telephone';
const SCREEN_HEIGHT = Dimensions.get("window").height;
const SCREEN_WIDTH = Dimensions.get("window").width;
import Icon from "react-native-vector-icons/Ionicons"
import Swiper from 'react-native-swiper';
class editCalendar extends Component {
static navigationOptions = ({ navigation }) => ({
static navigationOptions = ({navigation}) => ({
title: 'Editar Calendário',
headerTitleStyle : {textAlign: 'center',alignSelf:'center'},
headerStyle:{
backgroundColor:'white',
},
});
headerTitleStyle: {textAlign: 'center', alignSelf: 'center'},
headerStyle: {
backgroundColor: 'white',
},
});
constructor(props) {
super(props);
@ -55,89 +56,88 @@ class editCalendar extends Component {
loggedIn: false,
onHold: true,
user: {},
cenas:{Name:'as'},
text:'',
cenas: {Name: 'as'},
text: '',
};
}
render() {
return (
<ScrollView>
<View styles={styles.header}>
<View style={styles.carreerPath}>
<View style={styles.carreerPath}>
<Text style={styles.carreerPathText}>Carreer Paths</Text>
</View>
<View style={styles.carreerPathDescription}>
<Text >Nesta edição do enei vai ser possível aos participantes ecolherem uma área</Text>
<Text>Nesta edição do enei vai ser possível aos participantes ecolherem uma área</Text>
</View>
<TouchableOpacity style={{marginRight: 20}} onPress={() => navigation.navigate('Profile')}>
<Text>Escolher path</Text>
</TouchableOpacity>
<Text>Escolher path</Text>
</TouchableOpacity>
</View>
<View>
</View>
</View>
</ScrollView>
)
}
}
const styles = StyleSheet.create({
header:{
flex:1,
height: SCREEN_HEIGHT*0.1,
backgroundColor:'red'
header: {
flex: 1,
height: SCREEN_HEIGHT * 0.1,
backgroundColor: 'red'
},
carreerPath:{
flex:1,
carreerPath: {
flex: 1,
backgroundColor:'#CC1A17',
height:SCREEN_HEIGHT*0.1,
backgroundColor: '#CC1A17',
height: SCREEN_HEIGHT * 0.1,
justifyContent: 'center',
alignItems: 'center',
},
carreerPathText:{
fontSize:20,
carreerPathText: {
fontSize: 20,
fontWeight: 'bold',
color:'white'
color: 'white'
},
carreerPathDescription:{
padding:10,
marginBottom:100
},
wrapper: {
carreerPathDescription: {
padding: 10,
marginBottom: 100
},
wrapper: {},
slide1: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#9DD6EB',
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#9DD6EB',
},
slide2: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#97CAE5',
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#97CAE5',
},
slide3: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#92BBD9',
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#92BBD9',
},
text: {
color: '#fff',
fontSize: 30,
fontWeight: 'bold',
color: '#fff',
fontSize: 30,
fontWeight: 'bold',
}

View File

@ -5,7 +5,7 @@
*/
import * as React from "react";
import {View, StyleSheet, Dimensions, Text, Button, ScrollView} from "react-native";
import {View, StyleSheet, Dimensions, Text, Button, ScrollView, Image} from "react-native";
import {TabView, TabBar, SceneMap} from "react-native-tab-view";
import * as Actions from "../store/actions";
@ -40,31 +40,11 @@ export default class rallyDetail extends React.Component {
<View style={{height: SCREEN_HEIGHT * 0.15, paddingBottom: 10}}>
<View style={styles.row}>
<ScrollView horizontal>
<View>
<Text>jdasdnoa</Text>
</View><View>
<Text>asd</Text>
</View><View>
<Text>ccc</Text>
</View><View>
<Text>jdasddddddnoa</Text>
</View><View>
<Text>fddsdfe</Text>
</View><View>
<Text>ertfvvc</Text>
</View><View>
<Text>cxaqwee</Text>
</View><View>
<Text>pokmdhjene</Text>
</View><View>
<Text>mndjheke</Text>
</View><View>
<Text>qaploef</Text>
</View><View>
<Text>ploçter</Text>
</View><View>
<Text>çpolx</Text>
</View>
<View style={styles.memberImage}>
<Image
source={{uri: 'https://centrik.in/wp-content/uploads/2017/02/user-image-.png'}}
/>
</View>
</ScrollView>
</View>
@ -162,4 +142,16 @@ const styles = StyleSheet.create({
alignSelf: "center"
},
memberImage: {
flex: 1,
flexDirection: "row",
justifyContent: "flex-start",
alignSelf: "center",
marginRight: 4,
height: 50,
width: 50,
backgroundColor: "transparent",
},
});