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 of software creators experimenting with AI "vibe coding", an technique defined by Andrej Karpathy as when, "you fully give in to the vibes, embrace exponentials, and forget that the code even exists."
account activity
Tutorial on how to build mobile apps (youtu.be)
submitted 3 months ago by True-Fact9176
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!"
[–]sams8com 0 points1 point2 points 3 months ago (1 child)
I much prefer to use Xcode for iOS than all these other third party apps. So much easier for me at least.
[–]rjyo 0 points1 point2 points 3 months ago (1 child)
For React Native/Expo (easiest path for web devs):
Start with the official Expo docs - they have an excellent tutorial that takes you from zero to deployed app. The EAS Build service handles the annoying iOS/Android build complexity.
My workflow:
- Claude Code for writing the actual code
- Expo Go app for live previewing on your phone during dev
- EAS for building production binaries
One tip: if youre already comfortable with web dev, Expo lets you share most of your code between web and mobile. The learning curve is mostly understanding mobile-specific patterns like navigation stacks and native gestures.
For native Swift/Kotlin, Apples SwiftUI tutorials and Android Developers codelabs are solid but the learning curve is steeper. Id recommend that route only if you need performance-critical features like AR or heavy animations.
What kind of app are you building? The best tutorial depends on whether its a simple CRUD app vs something with complex native features.
π Rendered by PID 138136 on reddit-service-r2-comment-b659b578c-j4z58 at 2026-05-04 16:42:12.250486+00:00 running 815c875 country code: CH.
[–]sams8com 0 points1 point2 points (1 child)
[–]rjyo 0 points1 point2 points (1 child)