This is my function:
const scrollToDown = () =>
positionRef.current.scrollTo({x: -100, y: -100, animated: true});
When calling this function I want my screen to be scrolled a little bit down, but instead it is being scrolled all the way to top of the screen.
Any suggestions please?