Home > Enterprise >  Can I test my Flutter App from VSCode (Windows) on my physical iPhone device?
Can I test my Flutter App from VSCode (Windows) on my physical iPhone device?

Time:10-28

I want to deploy my flutter app on my physical iPhone Device from my VSCode desktop application in Widnows. I did it with React Native app in VSCode and Expo Cli on my iPhone device but I would like to do this with my Flutter App. Thanks!! ;)

CodePudding user response:

No, that's impossible to do this directly. You need to have Xcode installed to build iOS builds. You can use cloud-based CI/CD tools to build for iOS.

CodePudding user response:

This is not possible, you need to have Xcode which is only available on macOS in order to run the app. You can use VirtualBox with macOS installed as a workaround but it will be very slow

  • Related