-
Notifications
You must be signed in to change notification settings - Fork 0
/
developer.js
37 lines (33 loc) · 908 Bytes
/
developer.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
import React from "react";
import {View, Image, Text, StyleSheet, Linking, TouchableOpacity} from 'react-native';
import avatar from './assets/avatar.png';
const Developer = () => {
return(
<View style={styles.rodape}>
<TouchableOpacity onPress={()=>{Linking.openURL('https://www.portfoliodanielrodrigues.com.br')}} title='daniel' style={styles.botaofake}>
<Image source={avatar} />
</TouchableOpacity>
</View>
)
}
const styles = StyleSheet.create({
rodape: {
position: 'absolute',
bottom: 0,
left: 0,
backgroundColor: '#ebebeb',
borderRadius: 10,
marginVertical: 10,
marginLeft: '3%',
marginRight: '3%',
width: '96%',
height: 50,
},
botaofake: {
position:'absolute',
zIndex: 2,
bottom: 10,
left: 20,
}
});
export default Developer