is there a way in React Native that I can define on a global variable all the strings that I will be using like in Android Development there is a String.xml where you can put al
global in react native is like the window in web development.
global
// declare a global varible global.primaryColor = '***'; //now you can use this variable anywhere console.log(primaryColor);