Vijay Ram
Vijay Ram

Reputation: 405

How to test ios app from flutter in Windows

I am a beginner in flutter development. I have heard that ios app can make and test only in Mac. I don't know it's wrong or not.

But now I am started learning Flutter in Windows. I don't have enough money to buy a Mac. So is there any problem with learning flutter in Windows.

Upvotes: 0

Views: 720

Answers (2)

Julien Deuse
Julien Deuse

Reputation: 56

You need a Mac to build and test for iOS.

There are workarounds though. You could use a tool like Appollo. Appollo is a CLI utility that let's you:

  • configure Xcode
  • Test on an iOS simulator
  • Build an IPA, to install on a physical device
  • or build and publish your app in the App Store

Here is a link to their github and documentation

Upvotes: 1

himeshp
himeshp

Reputation: 379

you can learn flutter on windows and publish android apps or for the web. however, for developing ios apps, mac is required. the codebase remains the same, so there is no rework. you can use https://codemagic.io/ for ios builds.

Upvotes: 0

Related Questions