If your goal is to make money from home as an indie iOS developer, picking your mobile development stack is one of those decisions where the answer everyone gives you is wrong. "Just use Swift, it's native" — fine if you have unlimited time. "Use React Native, you can ship to Android too" — only true if your code translates cleanly. "Flutter is the future" — Flutter has been the future for six years. The honest reality is that the right stack for an indie developer earning from home depends on what you're building, who you are, and what you already know. When I led product at my old company we picked technology stacks based on what would let us ship and iterate fastest, not what was theoretically optimal. The same logic applies to indie iOS in 2026, just with smaller stakes and faster feedback loops — and with the added constraint that as a single laptop indie working from home, you cannot afford to fight your tools. This guide is a no-fluff comparison of Swift (with SwiftUI), Flutter, and React Native specifically for indie iOS developers building paid apps, freemium apps, or subscription apps in the US App Store as their make-money-from-home pillar. We'll cover learning curve, iteration speed, App Store approval realities, performance, and which stack actually ships profitable apps in 2026 — based on what's working for the indie devs I follow and have talked to.
What 'Indie iOS Developer' Actually Means for From-Home Income
Before getting into the stacks, definition: an indie iOS developer in 2026 is typically a solo developer or 2-person team building paid or subscription apps for the App Store, expecting to handle design, code, marketing, and customer support — usually from a kitchen table or home office, often around a day job. The economics are different from a big-team app — you can't outwait the market, you can't afford to rebuild because your stack chose wrong, and your time is the most expensive resource when you are also running the rest of your life from home. Most successful from-home indie devs ship their first app within 6 months of starting, hit profitability within 12 months on their second or third app, and run a small portfolio of 2 to 5 apps generating $5,000 to $50,000 a month combined — entirely as home-based income. The stacks compete on a specific question: which one lets a single from-home developer ship a polished, native-feeling iOS app the fastest with the least ongoing maintenance? Performance and platform integration matter, but speed-to-ship is the metric that actually decides who makes money. For more on the realistic income arc, see how much do app developers make.
Swift with SwiftUI: The Native Default
Swift with SwiftUI is Apple's first-party stack and has matured significantly since SwiftUI launched in 2019. By 2026, SwiftUI handles the vast majority of UI patterns elegantly, integrates cleanly with every Apple framework (HealthKit, ARKit, StoreKit, WidgetKit, Live Activities), and gets first-class support for every new iOS feature on launch day. Where Swift wins: native performance, smallest app size, deepest platform integration, fastest support for new iOS features, easiest path through App Review. Where it falls short: only ships to Apple platforms (iOS, macOS, watchOS, tvOS, visionOS) — no Android. Learning curve for a non-iOS developer is meaningful — Xcode, Swift's type system, and Apple's frameworks take 3-6 months of serious work to feel comfortable. For an indie developer planning to build only for iOS, Swift is the right answer in 2026 unless you have a specific reason otherwise. The platform integration alone — StoreKit 2 for subscriptions, Sign in with Apple, native widgets — saves enough time on iOS-specific features to offset the learning curve. Linked to App Review reality: Swift apps tend to clear review faster and with fewer rejections because they're using Apple's intended path. See Apple App Review guide for the approval realities.
Flutter: The Cross-Platform Power Tool
Flutter, Google's cross-platform framework, has matured into a genuine production-ready option for indie iOS in 2026. The pitch: write Dart code once, ship to iOS, Android, web, macOS, and Windows from a single codebase. Where Flutter wins: real cross-platform development with high UI fidelity, strong performance through its own rendering engine (avoiding the bridge overhead of React Native), excellent developer experience with hot reload, and a large package ecosystem. Where it falls short: every iOS-specific feature requires extra work to integrate (StoreKit, HealthKit, etc. have community packages of varying quality), the resulting app feels almost-native but rarely 100 percent native, and App Review occasionally flags Flutter apps for non-standard behavior. The hidden cost: maintaining native iOS integrations through Flutter packages is a real ongoing time sink. For an indie developer who explicitly wants both iOS and Android from day one, Flutter is the strongest choice in 2026. For an iOS-only developer who thinks they might add Android later, the trap is that "later" usually doesn't justify the upfront complexity. Build for what you're shipping today. For more on the cross-platform decision, see how to build an app with AI.
React Native: The JavaScript Path
React Native lets web developers leverage existing JavaScript and React knowledge to build mobile apps. The framework has improved significantly with the New Architecture (Fabric and TurboModules) reaching maturity by 2026. Where React Native wins: leveraging existing JS skills, fast iteration through Metro bundler and Hot Reload, large ecosystem (npm packages, Expo's managed workflow), strong web-to-mobile workflow if you already have a web app. Where it falls short: the bridge between JavaScript and native code adds complexity for performance-sensitive apps, native iOS feature integration requires native code modules (you'll write Swift anyway), and the resulting app sometimes has subtle performance hiccups in animations or list scrolling that native users notice. For indie developers who already have strong React/JavaScript skills and want to ship to iOS and Android, React Native is reasonable. For someone with no mobile or JS background starting fresh, the indirect path through web technologies often takes longer than just learning Swift. Expo's managed workflow has made starting with React Native easier than ever in 2026 — you can ship a basic app without ever touching native code. The question is whether the apps you want to ship stay within Expo's managed boundaries. Many do; some don't.
Iteration Speed: The Real Decider
All three stacks can ship a working iOS app. The question that actually matters for indie revenue: how fast can you iterate from "I have an idea" to "users are testing it"? In my honest assessment based on watching indie devs ship in 2026: Swift with SwiftUI is fastest for iOS-only developers who already know Apple's stack. The hot reload of SwiftUI Previews, the integration with Xcode, and the lack of toolchain complexity make iteration loops tight. Flutter is fastest for cross-platform from day one — the hot reload is genuinely instant and the UI building is satisfying. React Native with Expo is fastest for someone already deep in React who can leverage existing components. The slowest path: Swift for someone with no Apple background. The Apple toolchain has a real learning curve that Swift Playgrounds and Apple's official tutorials only partially smooth over. If iteration speed is your top priority and you have no existing skills, Flutter or React Native via Expo will get you to a shipping app faster. If you already know Apple's stack or are willing to invest 3 months learning it, Swift will give you better long-term iteration. For more on AI-assisted development workflows, see Claude Code for beginners.
App Store Approval: A Real Difference Between Stacks
App Store approval rates differ subtly across stacks in 2026, and most indie devs don't realize this until they hit a rejection. Swift apps clear review fastest and with the lowest rejection rate because they use Apple's intended frameworks in the intended way. Flutter and React Native apps occasionally get flagged for: non-standard navigation patterns, animations or behaviors that feel non-iOS, missing privacy manifest declarations for third-party SDKs, and iOS-specific accessibility issues. None of these are dealbreakers, but they're more common with cross-platform stacks. The implication: budget extra time for App Review iterations on cross-platform apps. A Swift app I've watched go through review typically clears in 12-48 hours; a Flutter or React Native app sometimes takes 3-7 days due to one or two rejection rounds. For an indie dev shipping monthly updates, this delay compounds. Understanding the approval process matters more than most developers expect — see Apple App Review guide for the full approval playbook.
Subscription and In-App Purchase Integration
If your app monetizes through subscriptions or in-app purchases — which is the dominant indie monetization model in 2026 — StoreKit integration matters enormously. Swift has first-class StoreKit 2 support, with elegant async APIs, automatic transaction handling, and tight integration with Apple's subscription analytics. Flutter relies on community packages or RevenueCat to wrap StoreKit, which works fine but adds dependency management overhead. React Native is similar — community packages or RevenueCat. The pattern most indie devs use across all three stacks: RevenueCat as the subscription management layer. RevenueCat abstracts StoreKit complexity, handles receipt validation, supports A/B testing, and provides analytics across iOS and Android. At indie scale, RevenueCat is essentially free (under $10K MTR), and the time savings versus rolling your own subscription handling are massive. Whichever stack you pick, plan for RevenueCat. The differentiator becomes: how cleanly does the stack let you wire RevenueCat into your UI? Swift wins on this dimension; the other two are fine but require a bit more glue code. See subscription vs in-app purchases for the monetization decision.
What I'd Pick in 2026 for Different Indie Profiles
If I were starting today, here's the decision tree. If you're an iOS-only indie developer with no existing skills: spend 3 months learning Swift and SwiftUI properly. The investment pays back over years of iOS-only work, and the App Store advantage is real. If you have strong React/JavaScript skills and want both iOS and Android: React Native with Expo is the path of least resistance to a shipping app. You'll still write some Swift for iOS-specific features, but the JS layer covers most of your app. If you have no existing skills and want both iOS and Android: Flutter is probably the fastest path to a functional cross-platform app. The Dart learning curve is real but smaller than learning Swift and Kotlin separately. If you're shipping a performance-critical app (games, AR, video editing): Swift, no question. The performance and integration benefits are too large to ignore. If you're shipping a content app or utility: any of the three works, pick based on your existing skills. The mistake to avoid: picking a stack because it has the most hype rather than the one that fits your skills and shipping plan. For more on validating ideas before committing to a stack, see how to validate an app idea.
Frequently asked questions
Real questions from readers and search data — answered directly.
Can I ship a successful App Store app using Flutter or React Native?
Should I learn Swift if I already know JavaScript?
How long does it take to ship a first app with each stack?
Does Apple favor Swift apps in the App Store?
What about Capacitor or Ionic?
Will AI tools help me learn a new stack faster?
Can I switch stacks later without rebuilding everything?
Which stack has the best AI tooling support?
How does each stack handle iOS UI design patterns?
What if I want to monetize on both iOS and Android?
Keep reading
Related guides on the same path.