Wheel Picker
more-shadcn-noair/wheel-pickerFreeComponent
An iOS-style scrollable wheel selector.
Live preview
live · rendered by the registry
Rendered by more-shadcn-noair on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://more-shadcn.noair.fun/r/wheel-picker.jsonSource
1<script lang="ts">2 import { cn } from '$UTILS$';3 import type { Snippet } from 'svelte';45 let {6 class: className,7 collapsed = false,8 children9 }: { class?: string; collapsed?: boolean; children: Snippet } = $props();10</script>1112<div13 class={cn(14 'relative flex w-full touch-none overflow-hidden bg-background select-none',15 className,16 collapsed ? 'h-10 transition-all hover:h-[200px] active:h-[200px]' : 'h-[200px]'17 )}18>19 <div20 class="pointer-events-none absolute left-2 right-2 top-1/2 -translate-y-1/2 h-[32px] rounded-md bg-muted z-1"21 />2223 <div24 class="pointer-events-none absolute inset-x-0 top-0 h-16 bg-gradient-to-b from-background to-transparent z-2"25 />26 <div27 class="pointer-events-none absolute inset-x-0 bottom-0 h-16 bg-gradient-to-t from-background to-transparent z-2"28 />2930 <div class="flex h-full w-full justify-center px-4 z-2 perspective-container">31 {@render children()}32 </div>33</div>3435<style>36 .perspective-container {37 perspective: 1000px;38 }39</style>
More from more-shadcn-noair
All 43 items| Component | Registry | Kind | Access | Installs | Command |
|---|---|---|---|---|---|
| Audioaudio | more-shadcn-noair | Components | Free | no deps | |
| Audio Waveaudio-wave | more-shadcn-noair | Components | Free | no deps | |
| Autocompleteautocomplete | more-shadcn-noair | Components | Free | no deps | |
| Bannerbanner | more-shadcn-noair | Components | Free | no deps | |
| Big Calendarbig-calendar | more-shadcn-noair | Components | Free | no deps | |
| Bottom Navigationbottom-nav | more-shadcn-noair | Components | Free | no deps | |
| Canvascanvas | more-shadcn-noair | Components | Free | no deps | |
| Chipchip | more-shadcn-noair | Components | Free | no deps |
