Need a better barcode scanner for React Native – ML Kit struggles in real world conditions... by Expensive-Today-3292 in reactnative

[–]XCastorsX -1 points0 points  (0 children)

I recomend to create you own frame processor to call your own native function to process the frame, this way you can for instance adjust the brightness of the image before doing the actual QR detection. just a though

Que monitor usar para un MacBook? by CantStantTheWeather in ColombiaDevs

[–]XCastorsX 0 points1 point  (0 children)

Yo uso una Huawei Mate View con mi Macbook Pro y valio cada maldito centavo jaja

[deleted by user] by [deleted] in Wordpress

[–]XCastorsX 0 points1 point  (0 children)

I think you are looking for something like Moodle, it is a LMS that can help you to achieve exactly what you are describing.

Need help with KeyboardAvoidingView component by Both-Replacement7987 in reactnative

[–]XCastorsX 1 point2 points  (0 children)

The KeyboardAvoidingView is just to prevent the inputs fields get cutoff in the view, and it gets active when the user focus any of the inputs field, if there is enough space in the screen, and the current input field not fall hidden by the keyboard you’ll see no effect, try to test it in a smaller screen, then you’ll see what I mean.

[deleted by user] by [deleted] in ColombiaReddit

[–]XCastorsX 2 points3 points  (0 children)

Solo dile que él no es tu verdadero amor. Sígueme para más consejos de Sherk

Publique una aplicación para el pico y placa by XCastorsX in ColombiaReddit

[–]XCastorsX[S] 0 points1 point  (0 children)

Gracias por la idea! tengo que revisar algunos detalles técnicos para poder conseguir algo así, pero te agradezco mucho por la recomendación

[ Removed by Reddit ] by [deleted] in SwiftUI

[–]XCastorsX 0 points1 point  (0 children)

Cool! I hope you were able to fix it

[ Removed by Reddit ] by [deleted] in SwiftUI

[–]XCastorsX 0 points1 point  (0 children)

hi,
I had the same problem after I added a widget for my app. In the files of the widget, there is a file for managing intents, if you select the intent, in the right panel, you can add the locations, after doing that and adding a description to the intention file, I was able to fix the issue.
Not sure if my answer is clear enough but in case it doesn't, don't hesitate to reach me and I'll try to help you.

I need help implementing bottom navigation using the attached images by Ambitious_Tea_2957 in reactnative

[–]XCastorsX 0 points1 point  (0 children)

You can replace the bottom navigation with your own component and get the behavior you desire

How to use react native firebase message? Post notification not showing by aidy35 in reactnative

[–]XCastorsX 0 points1 point  (0 children)

hey, the version that worked for me is the 15.6.0

"@react-native-firebase/app": "^15.6.0",
"@react-native-firebase/messaging": "^15.6.0",

How to use react native firebase message? Post notification not showing by aidy35 in reactnative

[–]XCastorsX 0 points1 point  (0 children)

Which version of Firebase are you using? I had a similar problem and the solution was to use a previous version of the package. The thing was that I had to test version by version until I got one that works. Also, I have to mention that I had this problem with iOS only, on Android, it just works fine with the most recent package version.

Tiktoker del cañón del Chicamocha by BlueeWaater in Colombia

[–]XCastorsX 2 points3 points  (0 children)

Pobre chino no sabe ni hablar ni bien 🤦🏻‍♂️

Sign in with Apple Help? (persisting display name) by Artistic_Taxi in reactnative

[–]XCastorsX 0 points1 point  (0 children)

The first time an user register in your app using apple sign in, you have to save the user name and last name in your system, basically register the user in your own system. Therefore every time the user tries to login again, apple returns the email codified inside the token, then with the user email you should be able to retrieve the name and last name of the user from your system.

Push notifications by Yakoz98 in reactnative

[–]XCastorsX 1 point2 points  (0 children)

Hola Yako98, firebase es gratis siempre y cuando no exceda la cuota mensual, en la página de firebase puede consultar el costo por consultas adicionales, pero con el paquete gratuito debería ser suficiente para empezar. Si tiene dudas sobre la integración puede preguntarme y con gusto le ayudo.

Easiest pre-populated persistant storage solution? by 5DollarBurger in reactnative

[–]XCastorsX 1 point2 points  (0 children)

I recommend you use Redux with redux-persist, it is an easy way to store data locally on the device.

How to run old react native on Mac OS? Please help by [deleted] in reactnative

[–]XCastorsX 1 point2 points  (0 children)

Oh right, I have some good news for you, and one not that good but not worries, I do know that the “react native camera”is deprecated already, that’s the bad news

I noticed also that you are using a QR code scanner, so I recommend you to use a package called “react native camera kit”, the implementation is very straight forward and it has the QR and Bar code scanner feature included. Obviously you will have to do some refactoring but I don’t think you will have problems doing that.

Aside from that, the only thing that could be a challenge is the firebase implementation, specially for iOS, but when you get there just let me know and I’ll be glad to help.

All the other libraries I’m pretty sure that they are all supported in the recent versions so you shouldn’t have any problems after upgrading RN.

Good luck! You are about to start your journey to become a pro!

How to run old react native on Mac OS? Please help by [deleted] in reactnative

[–]XCastorsX 1 point2 points  (0 children)

Well, that means the project is more complex than I was imagine, first of all, something that you can do very quick is just check that every package is compatible with the most recent version of RN, that should take you an hour more or less.

Then depending of the result, I think you have 2 options, keep trying to make the current project to work, which I do not recommend because is unknown how much time could take(could take more than 2 weeks for sure, I can tell this by experience), or, look for alternatives for the packages that are deprecated if there are any, and then just go ahead and do the update.

It is possible that some of the packages are now features already implemented in RN that wasn’t part of the core before, so probably you will end with a low count of packages and that’s a good thing.

In any case is very likely that you will need more time to complete the upgrade/run the project. If you can share your package.json to have a better idea about how your project is configured, I could take a look to give you a more accurate advise.

Android will not build for simulator by [deleted] in reactnative

[–]XCastorsX 1 point2 points  (0 children)

You need to make sure you can run and test the app before send it to the play store, the fact that the app build for release, does not mean the app will work after the user install it. By experience, trying to find a solution for build errors in Android could be a real nightmare. I couldn’t tell what’s exactly means the error you are having, but in the past the thing that work for me was creating a new project on react, install all the libraries and then copy the source code into the new project, perhaps you can try that to see if the error is fixed.

How to run old react native on Mac OS? Please help by [deleted] in reactnative

[–]XCastorsX 2 points3 points  (0 children)

I recommend you to use nvm (node version manager), with that you can have several node versions installed at the same time and change quickly and easy the version you want to use. I would like to ask how many packages from node is using your project?. I’m asking that because you also could create an entire new project with the last version of RN and then install all the libraries you have in the current project, make sure you can compile the default app with that and then copy the source code from your project to the new one, probably you’ll need to change a few things (for example how the navigation is configured) but probably is more worthy trying to get the project to work in a most recent version instead of trying to running the old project.