Just wrap your app within a context provider and feed that provider with the data you want to make global:
Read moreWhat is global in react native?
The global scope in React Native is variable global . Such as global. foo = foo , then you can use global. foo anywhere. But do not abuse it!
Read more