Without xcode you will not be able to build a flutter app that runs on an iOS simulator or device as xcode is what builds for the iOS platform . You will be able to run it on an android emulator that you configure and launch from within Android Studio, and that will work regardless of if xcode is installed.
Read moreHow do you use flutter doctor?
Android setup
Read moreHow do you open the flutter doctor?
Open Android Studio. Click File → Settings → Plugins. Select the Flutter plugin and click Install .
Read moreHow do you fix could not find a Flutter SDK please ensure flutter is installed and in your path you may need to restart?
To resolve it, you can;
Read moreHow do I find my Flutter SDK location?
Your Flutter SDK path should be a_better_place/flutter . These would be used in tools such as VSCode or Android Studio. Check your echo $PATH to point to the correct folder. Use export PATH=”$PATH:$HOME/flutter/bin” or whatever you need (and you can also include this into your ~/.
Read moreHow do I choose my Flutter SDK path?
Your Flutter SDK path should be a_better_place/flutter . These would be used in tools such as VSCode or Android Studio.
Read more