如何使用 react-native 转到屏幕顶部或屏幕中的其他元素?我需要为此使用 ref 吗?
请注意,我有来自外部的滚动视图,所以我不能使用滚动视图方法
我的代码很少:
<AnimatedButton
onPress={() => console.log("check", myref.current)}
icon="arrow-up"
/>
)}
例如,我想转到屏幕中的第一个元素:
<View ref={myref}>
<Text style={styles.massagetitle}>בחר סוג טיפול</Text>
</View>
没有scrollView如何处理?(再次,因为我不能放置滚动视图,因为我有从外部包裹它的滚动视图)