📅  最后修改于: 2022-03-11 15:03:24.428000             🧑  作者: Mango
import React, { useRef } from 'react';
import { ScrollView } from 'react-native';
const ScreenComponent = (props) => {
const scrollViewRef = useRef();
return (
scrollViewRef.current.scrollToEnd({ animated: true })}
/>
);
};