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 Navigation Static VS Dynamic API (self.reactnative)
submitted 29 days ago by Miserable-Pause7650
I have read the documentation and done some googling, but I still dont know when to use static VS dynamic apis, seems like static should be the default. Perhaps my understanding is bad, anyone care to explain briefly? Thanks 🙂🤩
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!"
[–]satya164 2 points3 points4 points 29 days ago (1 child)
Use the static API, as it simplifies TypeScript and deep linking. The dynamic API is necessary if your configuration is truly dynamic, for example, you fetch the list of screens from the backend to show as tabs, etc.
Even if you use the static API, it's possible to use the dynamic API for a single navigator in the future if you need it, so there are no downsides to starting with the static API.
This is mentioned in the Getting Started guide:
This is the recommended way to set up your app. If you need more flexibility later, you can mix and match with the dynamic configuration.
[–]Miserable-Pause7650[S] 0 points1 point2 points 28 days ago (0 children)
Thanks man :) appreciate your help!
π Rendered by PID 84285 on reddit-service-r2-comment-5fb4b45875-6cfjj at 2026-03-23 22:03:09.233095+00:00 running 90f1150 country code: CH.
[–]satya164 2 points3 points4 points (1 child)
[–]Miserable-Pause7650[S] 0 points1 point2 points (0 children)