Skeleton
nativeui/skeletonFreeComponent
A skeleton component for React Native applications.
Live preview
live · rendered by the registry
Rendered by nativeui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://nativeui.ribbi.ch/r/skeleton.jsonSource
1import React from "react";2import { View } from "react-native";3import { cn } from "@/lib/utils";45interface SkeletonProps extends React.ComponentPropsWithoutRef<typeof View> {6 className?: string;7}89function Skeleton({ className, ...props }: SkeletonProps) {10 return (11 <View12 className={cn("animate-pulse rounded-md bg-primary/10", className)}13 {...props}14 />15 );16}1718export { Skeleton };
Files it writes
More from nativeui
All 29 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Accordionaccordion | nativeui | Components | Free | 2 deps | |
| Alertalert | nativeui | Components | Free | 2 deps | |
| Alert Dialogalert-dialog | nativeui | Components | Free | 1 dep | |
| Avataravatar | nativeui | Components | Free | 1 dep | |
| Badgebadge | nativeui | Components | Free | 2 deps | |
| Breadcrumbbreadcrumb | nativeui | Components | Free | 2 deps | |
| Buttonbutton | nativeui | Components | Free | 2 deps | |
| Calendarcalendar | nativeui | Components | Free | 4 deps |
