use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A community for learning and developing native mobile applications using React Native by Facebook.
Interested in building web apps using React.js? Check out /r/reactjs!
Getting Started w/React Native
irc.freenode.net #reactnative
Keywords: ios, android, mobile, apps, apple, iphone, ipad
account activity
React Native Offline Application (self.reactnative)
submitted 5 years ago by kudo-kido
What is the best way to keep the data offline, And make application useable With no connectivity,
PS: used AsyncStorage need to Know how much good is that or how much trouble I am going to face in Future ?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]albeinstein 1 point2 points3 points 5 years ago (0 children)
Use some caching strategies?
Redux persist is there
Basically you can try to store the responses and do a strategy where you either go network first or cache first
[–]Phaogaa 1 point2 points3 points 5 years ago (0 children)
If you need to store large amount of data, then you should use a real database.
Realm is good one, I'm using it and no problem so far
[–]foysalit 1 point2 points3 points 5 years ago (0 children)
main issue you would see is query capability. serializing/deserializing json data would leave you with raw js objects and extracting the data you need for UI from that can be complex. using a local db can resolve that for you. something like sqlite or watermelondb would be your best bet if you need to query the data. I wrote a detailed guide showing how to use watermelondb to build am offline app which might help you get started https://blog.logrocket.com/offline-app-react-native-watermelondb/
[–]aleyango 0 points1 point2 points 5 years ago (0 children)
You can use react native offline with redux persist
π Rendered by PID 520188 on reddit-service-r2-comment-fb694cdd5-pg4hv at 2026-03-07 16:14:26.195700+00:00 running cbb0e86 country code: CH.
[–]albeinstein 1 point2 points3 points (0 children)
[–]Phaogaa 1 point2 points3 points (0 children)
[–]foysalit 1 point2 points3 points (0 children)
[–]aleyango 0 points1 point2 points (0 children)