ProfileImageCard.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import { StyleSheet, Text, View, ImageBackground, TouchableOpacity } from 'react-native'
  2. import React from 'react'
  3. import images from '../../../assets/images/images'
  4. import EditButton from '../Buttons/EditButton';
  5. import colors from '../../../theme/colors';
  6. const PROFILE_SIZE = 128;
  7. const EDIT_ICON_SIZE = 14
  8. const ProfileImageCard = (props) => {
  9. const {
  10. source,
  11. onEdit
  12. } = props
  13. return (
  14. <View style={styles.profileImageContainer}>
  15. <ImageBackground source={source ?? images.imageCard} style={styles.profileImageView} imageStyle={styles.profileImage}>
  16. <TouchableOpacity onPress={true}>
  17. <View style={styles.editIcon}>
  18. <EditButton iconSize={EDIT_ICON_SIZE} iconColor={colors.white} onPress={onEdit}/>
  19. </View>
  20. </TouchableOpacity>
  21. </ImageBackground>
  22. </View>
  23. )
  24. }
  25. export default ProfileImageCard
  26. const styles = StyleSheet.create({
  27. profileImageContainer: {
  28. paddingVertical: 16,
  29. alignItems: 'center',
  30. },
  31. profileImage: {
  32. height: PROFILE_SIZE,
  33. width: PROFILE_SIZE,
  34. borderRadius: PROFILE_SIZE
  35. },
  36. profileImageView: {
  37. height: PROFILE_SIZE,
  38. width: PROFILE_SIZE,
  39. borderRadius: PROFILE_SIZE,
  40. alignItems: 'flex-end',
  41. justifyContent: 'flex-end',
  42. padding: 8
  43. },
  44. editIcon:{
  45. alignSelf: 'flex-end',
  46. justifyContent: 'flex-end',
  47. backgroundColor: colors.primaryColor,
  48. padding: 4,
  49. borderRadius: 32
  50. }
  51. })