Skip to content

Instantly share code, notes, and snippets.

@madhums
Created February 25, 2020 22:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madhums/1ca0b9ad1ea776b43339b68310424f21 to your computer and use it in GitHub Desktop.
Save madhums/1ca0b9ad1ea776b43339b68310424f21 to your computer and use it in GitHub Desktop.
react native ecosystem reading

Basically you need to get familiar with the react ecosystem. Here's some that you would be widely using

  • React: Some important concepts here are
  • Redux: I am assuming you already know about this
  • Redux Saga: for async api comms
  • React Native: Pretty much uses the same react, redux stuff except for some new interfaces. Some important things to learn here are
  • Expo: makes react native builds and development easy by offering a wide array of components on top of React Native.
  • React Navigation: your go to navigation library for react-native. Navigation is one of the core functionality that gives a snappy UX so it's important to get familiar with this and stick to a native approach. (There will be some learning curve / boilerplate in integrating these libraries together but that's a one off)
  • React Native Elements: some common elements used in an app. It's best to stick with standard elements and use theming to provide colours and such. You can also checkout material design equivalent of this so that you simply stick with a standard component library. Try not to style too much and stick with standard stuff.
  • Use a Spacing system: One of the things that heavily affects the user experience is inconsistent spacing, use a proper spacing system. Learn more.
  • React Native Community: has a lot of components that you can pick from - you will come across this while going through expo and react-native.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment