Skip to main content
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 ...
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 ...
Christophe's user avatar
  • 82.3k
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)....
cmlonder's user avatar
  • 121
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 ...
Archimedes Trajano's user avatar
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 ...
Filip Milovanović's user avatar
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 ...
tiffon's user avatar
  • 146
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 ...
dmitrdem's user avatar

Only top scored, non community-wiki answers of a minimum length are eligible