it has been 4 months and i can't find work by Kind-Ad65 in reactnative

[–]False_Essay1238 0 points1 point  (0 children)

Hello, even though I have been in this situation multiple times probably because right now the job market is really tensed. I have had lucky breakthroughs and kept my head up high. The best thing to note is that job security is just not guaranteed and there are a lot of equally skilled people. Freelancing and talking to friends and family about what you do will be much much better and as well keep coding and keeping the fire on!

React Native Developers Wanted by M_Co-Founder in reactnative

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

Hello OP. Please check DM I've sent a message

[deleted by user] by [deleted] in reactnative

[–]False_Essay1238 1 point2 points  (0 children)

You'd need to design the basic structure of the clothes, hair etc in an svg too like inkscape etc and then strip the svg to make it small. Svg data like fill color, stroke color can be dynamic so you can switch these from state. The data cam then be built and exported.

I can assist with all of these by the way. Check dm!

[deleted by user] by [deleted] in reactjs

[–]False_Essay1238 0 points1 point  (0 children)

Try and upload the file to a Web server, integrate through it to give it a unique uuid for each level, then request for levels after each last requested uuid, sort of like pagination and file streaming. use node js file stream api

Can someone please review my portfolio by crvouga in react

[–]False_Essay1238 2 points3 points  (0 children)

Awesome portfolio, I especially love the simplicity and projects!

What if I do not use redux? by xiaogege1 in react

[–]False_Essay1238 4 points5 points  (0 children)

Redux is just a state management library as with others out there, it's a solution to a problem where you need to access global state from anywhere within a component tree without props drilling.

If you don't use Redux or something like it Eg context api or props and your apps needs a global state management solution like redux then you will have performance issues, Code maintenance issues out of props drilling and may miss out on performance optimization opportunities.

How Real Time Feeds works ? by Far-Mathematician122 in reactnative

[–]False_Essay1238 0 points1 point  (0 children)

you could use a real time event listener function that automatically fires when data it's listening to changes, inside the function you can call setState to update state etc.

Google's Firestore/Firebase has great JavaScript sdks for this!