Reputation: 16181
I'm planning to play around with React Native soon. The goal is to be able to create simple offline-first apps with a low level of backend and frontend complexity.
I am aware this is a primarily opinion-based subject, but I'm curious if any patterns emerge that could help me out deciding in which direction to go first.
Thanks!
Upvotes: 3
Views: 174
Reputation: 778
Take a look at redux-offline and react-native-offline, for my opinion the last one in seems to be quite interesting.
I think it's not important which UI components library to use, there is a good overview of them, believe you will find something appropriate.
Regarding navigation, in my opinion, there are two really good libraries react-navigation and react-native-navigation. I think you can successfully make your application using each of them, take a look at this article, probably it can help you to choose.
A few words about a database, in my projects I usually work with Reaml, it is an object-oriented database with good performance. But there are lots of options, take a look at this article.
Upvotes: 2