Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
Installation
$ pnpm dlx shadcn@latest add @termcn/virtual-list
Usage
import { VirtualList } from "@/components/ui/virtual-list";<VirtualList
items={Array.from({ length: 1000 }, (_, i) => `Item ${i + 1}`)}
height={10}
renderItem={(item, index, isActive) => <Text bold={isActive}>{item}</Text>}
/>API Reference
VirtualList
| Prop | Type | Default |
|---|---|---|
items | T[] | required |
renderItem | (item: T, index: number, isActive: boolean) => ReactNode | required |
height | number | required |
onSelect | (item: T, index: number) => void | - |
cursor | string | - |
overscan | number | 2 |