Documentation

SkeletonBuilder Docs

Complete guide to building beautiful skeleton screens and loading states for React Native applications

Quick Start
Get started with SkeletonBuilder in minutes

Basic Usage

import { SkeletonView } from 'skeleton-builder';

export default function MyComponent() {
  return (
    <SkeletonView
      width={300}
      height={200}
      borderRadius={8}
      animated={true}
    />
  );
}