Skip to content

Tag: react-native

Can’t find variable: counter, in expo

Been using React for a bit and wanted to try out native using expo, when I click on a button to increment a counter, I get a ReferenceError on my phone saying “Can’t find variable: counter”, I don’t get any error on the expo gui or in VSCode, very confused. Answer Change your increment…

How to pass the props when set ref for a component

This is my code, I’m put all the item in param map. and render by using: Now, i’m trying to pass the props color in the item by this.state.map[0][0].props.color =’#fff’ but not working, get an error ‘Cannot add property color, object is not extensible’, so is there any way …

What is axios rate limit?

Does anyone know’s the rate limit of the axios api because it is throwing a lot of 429 errors when i am using it here is my codes Answer Axios is an Http Client. Http Clients won’t have a rate limit. However, API’s typically have rate limiting implemented (especially public onces). The error…

How to resolve “Animated: `useNativeDriver` is not supported because the native animated module is missing.” in react-navigation?

I am working on expo SDK Version: 36, and on all platforms (ios/android/web) When installing react-navigation for the first time as described in the documentation and running jest –watch while doing it, and the following warning appeared: It also happen in the browser console: Related issues: https://gi…

What is a react js the way to learn?

I was a Java developer for coding Android for 3 years But now I find that learning to React.Js brings me one step closer to world-class technology. I did a lot of research on its learning path . I realized that for React.js and React Native I had to learn the following sequence : 1-html 2-css 3-java script 4-…