This article highlights the use of Flutter within the application Xcode. Flutter is a useful framework to utilize when developing both Android and iOS apps. Projects can be easily started within IDE's such as Visual Studio Code, Android Studio, and IntelliJ.
MacinCloud's Dedicated Server Plan is recommended for use with Flutter, as many dependencies that need to be installed separately may require sudo/admin privileges. Use Flutter with a Mac Server by obtaining a Dedicated Server Plan to quickly get started!
Note: For beginners who wish to try Flutter, you may try MacinCloud's Managed Server Plan with some limitations, due to the lack of root/admin privileges.
Getting Started with Flutter:
- To begin, install Flutter on your user profile. This is done by running the following command within terminal and your home directory:
Verify that your environment is properly setup. Flutter offers a tool called Doctor that will check this for you. Run the following command by adding Flutter to your PATH, sourcing your shell profile, then running the Flutter doctor command. Note, you must add the PATH to your respective shell profile.
If you receive the following error when running Flutter Doctor, install the Android SDK Command-Line tools through Android Studio's SDK manager:
After you have installed the Android SDK Command-Line tools to accept the necessary licenses, run the following command.
- Once licenses are fully accepted, run flutter doctor and you should see a prompt similar to the image below.
- Now, setup your iOS simulator. To grab a list of existing iOS simulators, type the following command within your terminal.
xcrun simctl list
- Choose a specific simulator by running the xcrun command to list all available simulators. Then, grab the specific $IOS_SIM_UDID and boot it using the command listed below.Note: If the specific simulator you wish to work with is not listed, please submit an installation request with our MacinCloud Support Help Desk.Here is an example:
The image above is the partial output of the xcrun command. Grab the desired UDID from the xcrun command output, and run the following command to boot the desired simulator model. Next, create your Flutter app with the following command. You may change the name of the app to whatever you like; we used "my_app" for the purpose of this tutorial. Change your directory to the directory that you wish to create your app in.
- Once completed, you should receive a prompt with the end statement, "All Done!". Boot up your project path within terminal and type the following command:
When this command is ran, the Flutter app will begin to compile within the Simulator that is currently booted.
Next, open your Flutter application within Xcode. You may do this by running the following command within your Flutter app folder.
It is extremely important that you sign into your Apple ID to build your app directly to the simulator. You may do this by clicking on Runner > Signing & Capabilities > Team > Add Account. You must also add a unique Bundle Identifier under Team.
You are now all set with your environment to begin developing iOS apps using Flutter.
Note: For more information, please visit Flutters official documentation https://flutter.dev/docs/get-started/install/macos