aboutsummaryrefslogtreecommitdiff
path: root/src/components/common/AvatarTitle.tsx
blob: a2a7c0aa12b9f731c1cc7622b3b06aac6589c5ac (plain)
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
import React from 'react';
import {StyleSheet, View} from 'react-native';
import LinearGradient from 'react-native-linear-gradient';
import {TAGGS_GRADIENT} from '../../constants';
import Avatar from './Avatar';

type AvatarTitleProps = {
  avatar: string | undefined;
};
const AvatarTitle: React.FC<AvatarTitleProps> = ({avatar}) => {
  return (
    <View style={styles.container}>
      <LinearGradient
        colors={[TAGGS_GRADIENT.start, TAGGS_GRADIENT.end]}
        useAngle={true}
        angle={154.72}
        angleCenter={{x: 0.5, y: 0.5}}
        style={styles.gradient}
      />
      <Avatar style={styles.avatar} uri={avatar} />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    width: '100%',
    height: '100%',
    aspectRatio: 1,
    justifyContent: 'center',
    alignItems: 'center',
  },
  gradient: {
    width: '82%',
    height: '82%',
    borderRadius: 1000,
    justifyContent: 'center',
    alignItems: 'center',
  },
  avatar: {
    position: 'absolute',
    width: '73%',
    height: '73%',
    borderRadius: 1000,
  },
});

export default AvatarTitle;