4
votes
Accepted
Best Practice for handling data sync with React Native, MobX and REST?
The best practice is to use persistent storage which facilitates offline-first development and offers built-in client/server data sync, such as PouchDB/CouchDB:
The PouchDB API provides a method for ...
Community wiki
3
votes
Is it helpful to create UML diagrams when developing a mobile app alone?
Neither, nor...
Wireframes remain the best tool to design a user interface. No UML can beat it for this purpose. UML should never be used for user interface design: it's not me, but it's UML fathers ...
2
votes
OAuth2 not implicit flow, POST username and password
One of the password flow use cases is:
there are legacy clients that can not support redirections
but you still want to be sure that your credentials are handled centrally (by your Identity Provider)....
1
vote
Where should I put/handle periodic data updates in React?
After a bit more research I found that the build your own hooks is similar to what I needed. In that it uses a subscribe, unsubscribe pair for their chat API which isn't actually coded, but I made an ...
1
vote
Accepted
Need help with React Shape building app architecture
Not sure if you'll find this answer useful because it's going to be fairly general, and you may have to figure out how to adapt these ideas to React Native, but here are a few thoughts.
Don't try to ...
1
vote
Accepted
Render constant props components from an object or by hand?
TLDR: Great question; use a const.
I agree, this comes up every now and again. Sometimes even often, depending on the project. That being the case, finding a good way handle this type of situation is ...
1
vote
React Native vs. "Real" native
I used to use Blomberg app as a sample of react native. You can check It if you need some proof of concept. It has infinite feeds and complicated UI. The scrolling and tabs switching is not so fast ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
react-native × 13reactjs × 5
android × 3
ios × 3
javascript × 2
patterns-and-practices × 2
mobile × 2
react × 2
redux × 2
design-patterns × 1
architecture × 1
development-process × 1
uml × 1
node.js × 1
optimization × 1
caching × 1
oauth2 × 1
android-development × 1
sqlite × 1