Skip to content

Instantly share code, notes, and snippets.

@DaKaZ
Last active May 7, 2020 18:02
Show Gist options
  • Save DaKaZ/b125904be6a0a29c53d02a96084ac08a to your computer and use it in GitHub Desktop.
Save DaKaZ/b125904be6a0a29c53d02a96084ac08a to your computer and use it in GitHub Desktop.
Awesome ReactNative

My list of awesome ReactNative libraries

Frontend

UI

Forms

Backend

Navigation

  • react-navigation - the only real choice for ios/android/web, v5 hooks implementation has been solid

State Management

  • redux-saga - side effects done right
    • Consider using common state structure with your async fetching with sagas like:
      { lastFetch: ?Date, fetching: boolean, lastError: ?Error, collection: [] }
  • ducks pattern
    • I typically modify the ducks pattern to always export actions, types and reducer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment