ScrollArea
ScrollArea is a widget that provides a scroll view onto another widget.
Example
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