0

Can we build iOS apps on Windows using flutter? If we use iPhone and connect it with windows using the cable and run a flutter app then will it work, then can we test the application on the iphone?

Arpit Jai
  • 211
  • 2
  • 14

2 Answers2

4

no, and yes

You can't build for iOS, without a mac
But you can install virtual box, and install macOS on it, then you'll be able to build for iOS

But that's quite a complex task to do(it was for me, when I tried to do it on my ubuntu), even if you get success with it, it'll consume so much of your computer's resources, and the performance can be poor as well

Personally tried on i5 9th gen, with 4gb graphics, and 8gb ram laptop

iamdipanshus
  • 492
  • 3
  • 12
2

You can use the CLI tool Appollo to do that. Check a demo : https://www.youtube.com/watch?v=ZX3DAMwlEfM&t=10s

To install it run pip install appollo in your console then configure your Apple Developer Account with Appollo : https://appollo.readthedocs.io/en/master/tutorial/2_configure_app_store_connect.html

And then you just have to build and publish your app

appollo build start --build-type publication
Maxime Deuse
  • 313
  • 11
  • 13