Deskripsi: - view foto profile - view foto detail member - view image banner No Issues
24 lines
701 B
TypeScript
24 lines
701 B
TypeScript
import Styles from "@/constants/Styles";
|
|
import { useState } from "react";
|
|
import { Image } from "react-native";
|
|
|
|
type Props = {
|
|
src: string,
|
|
size?: 'sm' | 'xs' | 'lg'
|
|
border?: boolean
|
|
onError?: (val:boolean) => void
|
|
}
|
|
|
|
export default function ImageUser({ src, size, onError }: Props) {
|
|
const [error, setError] = useState(false)
|
|
return (
|
|
<Image
|
|
source={error ? require('../assets/images/user.jpg') : { uri: src }}
|
|
style={[size == 'xs' ? Styles.userProfileExtraSmall : size == 'lg' ? Styles.userProfileBig : Styles.userProfileSmall, Styles.borderAll]}
|
|
onError={() => {
|
|
setError(true)
|
|
onError?.(true)
|
|
}}
|
|
/>
|
|
)
|
|
} |