Mi aplicación tiene
return( <ScrollView style={{ backgroundColor: "#262423", flex: 1 }} scrollsToTop={true}> ...my ScrollView </ScrollView> )pero cuando toco la barra de estado de mi dispositivo iOS, ScrollView no se desplaza hacia la parte superior.
Prueba así
import { useRef } from 'react'; const scrollRef = useRef(); const onPressTouch = () => { scrollRef.current?.scrollTo({ y: 0, animated: true, }); } <ScrollView ref={scrollRef}> ...your elements </ScrollView> <TouchableOpacity onPress={onPressTouch}></TouchableOpacity>