Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
Scroll to top in nested Drawer navigation

I have a nested Drawer navigation and want to scroll to top on every screen change, I am using UseScrollToTop hook as described in the docs but it's not working, are there any other ways guys?

const Home = ({ navigation }) => {
 const ref = useRef(null);

 useScrollToTop(ref);

 return (
 <View>
 <View style={styles.booksContainer}>
 <FlatList
 ref={ref}
 numColumns={2}
 data={DATA}
 renderItem={({ item }) => (
 <HomeItem item={item} navigation={navigation} />
 )}
 keyExtractor={item => item.id}
 />
 </View>
 </View>
 );
};
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

To anyone that will have the same problem, I think useScrollToTop hook only works with the Tab navigation.

This is what worked for me.

useEffect(() => {
    const unsubscribe = navigation.addListener('blur', () => {
      ref.current.scrollToIndex({ animated: true, index: 0 });
    });

    return unsubscribe;
  }, [navigation]);

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!