Avatar
A nornal avatar component. from nativecn-ui (opens in a new tab).
Code
avatar.tsx
import React from 'react';
import { Text, View } from 'react-native';
import { docking } from '@/utils/docking';
import ExpoImage from '@/components/expo-image';
const Avatar = React.forwardRef<
React.ElementRef<typeof View>,
React.ComponentPropsWithoutRef<typeof View>
>(({ className, ...props }, ref) => (
<View
ref={ref}
className={docking(
'relative flex h-10 w-10 shrink-0 overflow-hidden rounded-full',
className
)}
{...props}
/>
));
Avatar.displayName = 'Avatar';
const AvatarImage = React.forwardRef<
React.ElementRef<typeof ExpoImage>,
React.ComponentPropsWithoutRef<typeof ExpoImage>
>(({ className, ...props }, ref) => {
const [hasError, setHasError] = React.useState(false);
if (hasError) {
return null;
}
return (
<ExpoImage
ref={ref}
onError={() => setHasError(true)}
className={docking('aspect-square h-full w-full', className)}
{...props}
/>
);
});
AvatarImage.displayName = 'AvatarImage';
const AvatarFallback = React.forwardRef<
React.ElementRef<typeof View>,
React.ComponentPropsWithoutRef<typeof View> & {
textClassname?: string;
}
>(({ children, className, textClassname, ...props }, ref) => (
<View
ref={ref}
className={docking(
'flex h-full w-full items-center justify-center rounded-full bg-muted',
className
)}
{...props}>
<Text className={docking('text-lg text-primary', textClassname)}>
{children}
</Text>
</View>
));
AvatarFallback.displayName = 'AvatarFallback';
export { Avatar, AvatarImage, AvatarFallback };
Variant
This component has not a variant.