React Native Status
512 subscribers
11 photos
167 links
Sharing weekly news & articles about:
βš›οΈ React Native, React.js
🐍 TypeScript, JavaScript
πŸ›  Libraries, Tools
Take a seat and enjoy your stay! 😊
Download Telegram
Channel created
πŸ‘‹ Hey folks, pleased to see you all here!

This is a channel where I will post some news/thoughts about React Native and other relative topics(React.js, JavaScript, libraries, etc...). I hope you will enjoy your stay there 😊.

πŸ‘‰ I also created a group where we can talk on the same topic. You can join here: https://t.me/React_Native_Status_Talk
Which RN version are you using in your project?
Anonymous Poll
25%
0.61
33%
0.60
17%
0.59
0%
< 0.59
25%
expo
0%
HTML is a programming language
Remember the frustration of writing this?

const theAddress = secondUser && secondUser.address && secondUser.address.office;

Well, in the next ES2019, we might just write:

const theAddress = secondUser?.address?.office;

I
sn't that great? There is even more sweets comming... 😱
I have been using React Redux to manage forms myself before. I was handeling erros and everything by myself. Last month, I decided to use a library instead. After doing some research I come across: Formik. I was amazed by how much redundant code was gone, instead I have now a clean code that manages my forms. I highly suggest having a look at Formik, the good part about it, it's that is fully compatible with React Native. This talk sold me into trying Formik.