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

271
Views
React Native - Call Async Function From Another Component To Store and Get Data

I'm trying to call an async function to store and get data that I fetch from an API. The user is supposed to get a token on the login screen, and the token will be shown on the home screen. But the token is not shown in the console when the user presses the button on the home screen link.js

export const SET_USER_AUTH = async ({accessToken, tokenType, expiresAt}) => {
    try {
        await AsyncStorage.setItem('@access_token', accessToken);
        await AsyncStorage.setItem('@token_type', tokenType);
        await AsyncStorage.setItem('@expires_at', expiresAt);
        await AsyncStorage.setItem('@user_auth', tokenType + " " + accessToken);
        console.log("Done SET_USER_AUTH");
    } catch(e) {
    // read error
    }
};

export const GET_USER_AUTH = async () => {
    try {
        const accessToken = await AsyncStorage.getItem('@access_token');
        const tokenType = await AsyncStorage.getItem('@token_type');
        const expiresAt = await AsyncStorage.getItem('@expires_at');
        const userVer = await AsyncStorage.getItem('@user_auth');
        console.log("Done GET_USER_AUTH");
    } catch(e) {
    // read error
    }
};
    

Home.js

return (
        <Button onPress={() => console.log(GET_USER_AUTH.userVer)}/>
    );
about 4 years ago · Juan Pablo Isaza
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!