Garamani

Results 10 comments of Garamani

Greetings, This is local_reverse_geocoder debug info: This is the image to see the files in the server: the cities15000.txt file is available with no timestamp, but It seems the cities15000...

@tomayac Thank you I updated to the latest version, but the problem for me was the name of the "cities" folder. In the latest local_reverse_geocoder codes, the "cities" folder name...

For me (using react-native-navigation and persistant redux) the only working solution is: `setTimeout(() => { SplashScreen.hide(); }, 1000);` It gives some time to react-native-navigation to mount the next screen after...

- The approach of the react native team in releasing the new updates is wrong. Their duty is just to release a working react native package. The react native on...

@marcodiloreto Unfortunately, you need to check and apply the changes manually after **npm install [email protected]**. use this tool: https://react-native-community.github.io/upgrade-helper/?from=0.68.0&to=0.70.1 (you delete the green lines of code from the right side...

In my case, the problem was related to **Not having enough space** on my mac.

@gui-grana Because of the same issue, I changed all my carousels to use this package instead: [react-native-reanimated-carousel](https://github.com/dohooo/react-native-reanimated-carousel). It was quite simple and easy and It didn't need that much change...

I'm using: - React Native: 0.71.4 - React: 18.2.0 and experiencing the same issue: - **onEndReached** triggers early before having any data. - when the data is loaded and reaches...

This is the only way I could make it work after many hours of testing: You can replace the code below with ConfirmationCodeInput.js: ``` import React, {Component} from 'react'; import...

This is a quick fix: ``` onDateChange={(time) => { let [hours, minutes] = time.split(':'); hours = parseInt(hours); minutes = parseInt(minutes); // Convert hours and minutes to time in minutes time...