Skip to content

Description

ScrollView is a tiny helper component helping the user controlling overflowing content horizontally or vertically.

It also is used in other floating components like Dropdown or Drawer.

Code Editor
<ScrollView>scrollable content</ScrollView>

Demos

Keyboard support

When used for regular content, it should be possible for the user to user their keyboard to control the scrollposition.

You can enable keyboard support with the interactive prop.

large content
Code Editor
<ScrollView
  interactive={true}
  style={{
    maxHeight: '10rem',
  }}
>
  <div
    style={{
      minHeight: 800,
      display: 'flex',
      flexDirection: 'column',
      justifyContent: 'flex-end',
      background:
        'linear-gradient(rgba(255,0,0,1) 0%, rgba(255,154,0,1) 10%, rgba(208,222,33,1) 20%, rgba(79,220,74,1) 30%, rgba(63,218,216,1) 40%, rgba(47,201,226,1) 50%, rgba(28,127,238,1) 60%, rgba(95,21,242,1) 70%, rgba(186,12,248,1) 80%, rgba(251,7,217,1) 90%, rgba(255,0,0,1) 100%) 0 0/100% 200%',
    }}
  >
    large content
  </div>
</ScrollView>