1
leksyib
6y

React native devs, how do y'all persist data on different screens without using redux-persist and redux at all?

I mean, I need to navigate through different screens without having to lose data on the previous screen. Help!

Comments
  • 1
    "Screens" are just components that also live inside components. Use state in the screens parents, pass down that state as props to screens. Hope that helps a little.
Add Comment