Complete guide to building beautiful skeleton screens and loading states for React Native applications
import { SkeletonView } from 'skeleton-builder';
export default function MyComponent() {
return (
<SkeletonView
width={300}
height={200}
borderRadius={8}
animated={true}
/>
);
}