Can I use Flutter to develop IOS in Android Studio?

You can develop the app completely on Windows or any other operating system. All you need is an IDE or editor (Android Studio or VS Code).

But to compile/release the app for iOS or for tests on the iPhone simulator, you will need a Mac with XCode installed.

The good thing is that the code you've written in Dart will (normally) work on iOS without any changes, so you can just develop on Windows (and test your app on Android), then ask a friend who owns a Mac if you can borrow it for a day to compile it for iOS.


Yes, You can develop Flutter apps (both iOS and android) on Android studio which is available for Windows, Linux and macOS, but to distribute iOS apps (created using Flutter), you would need Xcode (which is only available for macOS).

However, if you are on macOS, you can develop and distribute Flutter apps for both iOS and Android.

You can configure any IDE for your Flutter development (see this https://flutter.io/using-ide/) and to release/distribute apps for each platform, you can fall back to Xcode and Android studio.

See more info here: https://flutter.io/setup-macos/