ttolbel UI

Component

Scroll view

A height-capped, scrollbar-hidden container for lists that need to live inside a constrained space, like a sheet or modal.

The primitive

Chase Bank

•••• 4821

Ally Bank

•••• 1190

Wells Fargo

•••• 7723

Capital One

•••• 0091

scroll view.tsx
<NativeScrollView size="sm">
  <NativeRow label="Chase Bank" sublabel="•••• 4821" />
  <NativeRow label="Ally Bank" sublabel="•••• 1190" />
  <NativeRow label="Wells Fargo" sublabel="•••• 7723" />
  <NativeRow label="Capital One" sublabel="•••• 0091" />
</NativeScrollView>

Example

A scrollable list of saved destinations living inside a bottom-sheet picker, capped to the sheet's own height.

Choose a destination

Morgan Diaz

Saved contact

Priya Shah

Saved contact

Jordan Lee

Saved contact

scroll-view-example.tsx
<NativeScrollView size="md">
  {contacts.map((c) => <NativeRow key={c.id} label={c.name} sublabel="Saved contact" />)}
</NativeScrollView>

Capabilities

PropTypeDescription
childrenrequiredReact.ReactNode
sizeNativeScrollViewSize
classNamestring