Pitty
Pitty

Reputation: 1997

How to create IOS Simulator Flutter

I am a newbie for the flutter Using AndroidStudio as IDE. I successfully create the Flutter Application and able to run it on Android emulator.

Can I create IOS simulator to test the Application using Android studio? If Yes Please suggest how it is possible?

Upvotes: 4

Views: 29154

Answers (3)

Raghib Arshi
Raghib Arshi

Reputation: 765

  • enter image description hereOpen your terminal and type only "open -a Simulator" that it.

Upvotes: 2

Anilcan
Anilcan

Reputation: 149

Yes, I'm using Android Studio with IOS Simulator. Open the simulator in your mac and you can show device in Android Studio.

You can open simulator only with this command

open -a Simulator

And you will show the iPhone device in Android Studio when the simulator opened.

enter image description here

Upvotes: 12

Günter Zöchbauer
Günter Zöchbauer

Reputation: 657937

The iOS simulator is part of XCode and only runs on Apple OSX

See also https://developer.apple.com/library/content/documentation/IDEs/Conceptual/simulator_help_topics/Chapter/Chapter.html

Upvotes: 1

Related Questions