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
|
import {useNavigation} from '@react-navigation/native';
import React from 'react';
import {StyleSheet, TouchableOpacity, View} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
import {TAGGS_GRADIENT} from '../../constants';
interface TaggProps {
style: object;
social: string;
isProfileView: boolean;
}
const Tagg: React.FC<TaggProps> = ({style, social, isProfileView}) => {
const navigation = useNavigation();
return (
<TouchableOpacity
onPress={() =>
navigation.navigate('SocialMediaTaggs', {
socialMediaType: social,
isProfileView: isProfileView,
})
}>
<LinearGradient
colors={[TAGGS_GRADIENT.start, TAGGS_GRADIENT.end]}
useAngle={true}
angle={154.72}
angleCenter={{x: 0.5, y: 0.5}}
style={[styles.gradient, style]}>
<View style={styles.image} />
</LinearGradient>
</TouchableOpacity>
);
};
const styles = StyleSheet.create({
gradient: {
width: 80,
height: 80,
borderRadius: 40,
justifyContent: 'center',
alignItems: 'center',
},
image: {
width: 72,
height: 72,
borderRadius: 37.5,
backgroundColor: 'pink',
},
});
export default Tagg;
|