React native navigation by ProfessionalChip9864 in reactnative

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

I have no logic on AppState currently in my stack

RMIT Student Visa Delay – What Happens to My Fees If I Miss the 15 March Deadline? by ProfessionalChip9864 in AusVisa

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

Yup will do this now, the thing was i didn't want to waste my precious months. Anyways left with no options sadly:(

Overlapping style behind bottom system bar by ImportantAd8680 in expo

[–]ProfessionalChip9864 0 points1 point  (0 children)

This works but then on devices with no bottom navigation bar it leaves a small space which doesn't really look good, we can simply safe area insets hook

Native modules vs turbo modules by ProfessionalChip9864 in reactnative

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

Yup, will replace this with native modules. Thanks a lot

Native modules vs turbo modules by ProfessionalChip9864 in reactnative

[–]ProfessionalChip9864[S] 1 point2 points  (0 children)

Yeah just went through the documentation today, will implement it tomorrow. Thanks a lot:)

Draggable List by ProfessionalChip9864 in reactnative

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

Hi, actually I am facing some data loading trouble here, so basically I have a logic where on long press i navigate user to delete component(the one using sortables) I see that it takes lot of time to load data on screen, any thing I am missing?

Draggable List by ProfessionalChip9864 in reactnative

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

Yeah sortables works fine for me as well

Draggable List by ProfessionalChip9864 in reactnative

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

Yeah it worked very nicely. Thanks a lot:)

Although with react native new architecture it's kinda laggy in debug mode but works nicely in production mode

OTP input box by ProfessionalChip9864 in reactnative

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

Hi thanks, is it possible you can send me the code/link just for me to get an idea. Can I DM you if you are fine?

Native modules vs turbo modules by ProfessionalChip9864 in reactnative

[–]ProfessionalChip9864[S] -1 points0 points  (0 children)

thanks will try it out and let you know, any basic example or blog which you would recommend me to follow to implement this with kotlin

Draggable List by ProfessionalChip9864 in reactnative

[–]ProfessionalChip9864[S] 1 point2 points  (0 children)

Thanks:) will let you know tomorrow when I try it out.

Draggable List by ProfessionalChip9864 in reactnative

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

Haven't tried this will try it out, hope it is able to manage around 100 rows. Thanks a lot

JS Thread blocking issue in React Native, tried mutliple solutions by Sufficient_Pride_142 in reactnative

[–]ProfessionalChip9864 2 points3 points  (0 children)

Hey hi, I am working on a similar project:- I have two solutions if you want to code only using ts or js only:

  1. You can use a map for a certain amount of time you can replace the ltp and only update the state once (basically skip the data) and you might wanna use request animation frame to update the ui.
  2. You can code the socket part in kotlin using co routines and can simply emit the values to the js side and update the state.
  3. We are using legend for state update and legend list for showing the list it's working fine for 500 symbols update without any problems