Skip to content

ScrollArea

ScrollArea is a widget that provides a scroll view onto another widget.

Example

example_scrollArea.tsx
import { ScrollArea, Image } from '@vixen-js/core-react';
export function ScrollAreaExample() {
return (
<ScrollArea widgetResizable={true}>
<Image src="./assets/hello-world.png" />
</ScrollArea>
);
}

Learn more about ScrollArea