Global Variable / Constant in React Native

后端 未结 4 1301
北荒
北荒 2021-02-01 02:03

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

4条回答
  •  北荒
    北荒 (楼主)
    2021-02-01 02:43

    global in react native is like the window in web development.

    // declare a global varible
    global.primaryColor = '***';
    
    //now you can use this variable anywhere
    console.log(primaryColor);
    

提交回复
热议问题