Flutter Mac Download


010 MAC -Setup Dart and Flutter SDK on Mac OSX - Part 3 00:08:16. 011 MAC -Setup Dart and Flutter SDK on Mac OSX - Final 00:10:58. 05 Development Tools Setup Windows - For Windows Users. 012 Download Android Studio and Setup Emulators 00:25:01. 013 OPTIONAL - Android Studio - Fix VTX is Disabled in BIOS.html. How to install and setup Flutter on Mac - Part 2In this series, we introduce you to the joys of working with Flutter and Dart to build iOS and Android apps w. Flutter Flutter - Beautiful native apps in record time. Design beautiful apps. Productively build apps. Create faster apps. Target mobile, web, & desktop apps. Flutter is Google's UI toolkit for building beautiful, natively compiled applications for mobile, web, desktop, and embedded devices from a single codebase. MacOS supports developing Flutter apps for both iOS and Android. Complete at least one of the two platform setup steps now, to be able to build and run your first Flutter app. IOS setup Install Xcode. To develop Flutter apps for iOS, you need a Mac with Xcode 9.0 or newer: Install Xcode 9.0 or newer (via web download or the Mac App Store). Tools: Flutter depends on these command-line tools being available in your environment. Which; Get the Flutter SDK. Download the latest flutter SDK from the flutter official site from the link below. Download Fltter SDK. Extract the file in the desired location, for example.

In this tutorial you will learn how to install flutter on Mac step by step and how to configure XCode to work with flutter.But before we install flutter lets know what actually is flutter.

Windows:How to install flutter on windows with android studio.
Visual studio code :How to install flutter with visual studio code.
Ubuntu :How to install flutter on ubuntu.

2How to Install Flutter On Mac?
3Get the Flutter SDK
3.1Run flutter doctor
5iOS Setup
6Android Setup

What is Flutter?

Flutter is Google’s mobile UI framework for crafting high-quality native interfaces on web, mobile and desktop in record time. It is used to develop applications for web, desktop, Android and iOS.Using a single codebase, you can develop mobile apps for both Android and iOS in the same time without putting extra effort. Flutter works with existing code,and is used by developers and organisations around the world, and is free and open source.

NOTE : This tutorial about how to install flutter on mac os is complete reference from flutter official documentation.

How to Install Flutter On Mac?

Minimum System requirements

To install Flutter on Mac, your development environment must meet these minimum requirements

  • Operating System: macOS (64-bit)
  • Disk Space: 2.8 GB (does not include disk space for IDE/tools).
  • Tools: Flutter depends on these command-line tools being available in your environment.
    1. bash
    2. curl
    3. Git for Mac
    4. mkdir
    5. rm
    6. unzip
    7. which

Get the Flutter SDK

Download the latest flutter SDK from the flutter official site from the link below.
Download FltterSDK

Extract the file in the desired location, for example:

Add the flutter tool to your path:

This command sets your PATH variable for the current terminal window only. To permanently add Flutter to your path checkout the update your path section of this post.

Optionally, pre-download development binaries:

The flutter tool downloads platform-specific development binaries as needed. For scenarios where pre-downloading these artifacts is preferable (for example, in hermetic build environments, or with intermittent network availability), iOS and Android binaries can be downloaded ahead of time by running:

For additional download options, see flutter help precache command.
Yay! you can now run flutter commands.

Run flutter doctor

Run the following command to see if there are any dependencies you need to install to complete the setup (for verbose output, add the -v flag):

This command checks your environment and displays a report to the terminalwindow. The Dart SDK is bundled with Flutter; it is not necessary to installDart separately. Check the output carefully for other software you mightneed to install or further tasks to perform (shown in bold text).

For example:

Fix license issue in Android studio

Fix iOS toolchain issues

( Install Xcode command line tools if you are on Mac OS Mojave)

Update iOS-deploy

The following sections describe how to perform these tasks and finish the setup process.
Once you have installed any missing dependencies, run the flutter doctor command again to verify that you’ve set everything up correctly.

Update your path

  • Determine the directory where you placed the Flutter SDK. You need this in Step 3.
  • Open (or create) the rc file for your shell. For example, macOS Mojave (and earlier) uses the Bash shell by default, so edit $HOME/.bash_profile or $HOME/.bashrc. macOS Catalina uses the Z shell by default, so edit $HOME/.zshrc.If you are using a different shell, the file path and filename will be different on your machine.
  • Add the following line and change
    [ PATH_TO_FLUTTER_GIT_DIRECTORY ] to be the path where you cloned Flutter’s git repo:
  • Run source $HOME/.<rc file> to refresh the current window, or open a new terminal window to automatically source the file.
  • Verify that the flutter/bin directory is now in your PATH by running:
  • Verify that the flutter command is available by running:

Platform Setup

macOS supports developing Flutter apps in iOS, Android, and the web (technical preview release). Complete the platform setup steps now, to be able to build and run your first Flutter app.

iOS Setup

Install Xcode

To develop Flutter apps for iOS, you need a Mac with Xcode.

Install the latest stable version of Xcode (using web download or the Mac App Store).
Configure the Xcode command-line tools to use the newly-installed version of Xcode by running the following from the command line:

This is the correct path for most cases, when you want to use the latest version of Xcode. If you need to use a different version, specify that path instead.

Make sure the Xcode license agreement is signed by either opening Xcode once and confirming or running sudo xcodebuild -license from the command line.

Versions older than the latest stable version may still work, but are not recommended for Flutter development. Using old versions of Xcode to target bitcode is not supported, and is likely not to work.

With Xcode, you’ll be able to run Flutter apps on an iOS device or on the simulator.

Set up the iOS simulator

To prepare to run and test your Flutter app on the iOS simulator, follow these steps:

  • On your Mac, find the Simulator via Spotlight or by using the following command:
  • Make sure your simulator is using a 64-bit device (iPhone 5s or later) by checking the settings in the simulator’s Hardware > Device menu.
  • Depending on your development machine’s screen size, simulated high-screen-density iOS devices might overflow your screen. Set the device scale under the Window > Scale menu in the simulator.

Create and run a simple Flutter app

To create your first Flutter app and test your setup, follow these steps:

Create a new Flutter app by running the following from the command line

A my_app directory is created, containing Flutter’s starter app. Enter this directory

To launch the app in the Simulator, ensure that the Simulator is running and enter

Deploy to iOS devices

To deploy your Flutter app to a physical iOS device you need the third-party CocoaPods dependency manager and an Apple Developer account. You’ll also need to set up physical device deployment in Xcode.

Install and set up CocoaPods by running the following commands

Follow the Xcode signing flow to provision your project

  • Open the default Xcode workspace in your project by running openios/Runner.xcworkspace in a terminal window from your Flutter project directory.
  • Select the device you intend to deploy to in the device drop-down menu next to the run button.
  • Select the Runner project in the left navigation panel.

In the Runner target settings page, make sure your Development Team is selected. The UI varies depending on your version of Xcode.

  • For Xcode 10, look under General > Signing > Team.
  • For Xcode 11 and newer, look under Signing & Capabilities > Team.

When you select a team,Xcode creates and downloads a Development Certificate,registers your device with your account,and creates and downloads a provisioning profile (if needed).

  • To start your first iOS development project, you might need to sign into Xcode with your Apple ID.
    Development and testing is supported for any Apple ID. Enrolling in the Apple Developer Program is required to distribute your app to the App Store. For details about membership types, see Choosing a Membership.
  • The first time you use an attached physical device for iOS development, you need to trust both your Mac and the Development Certificate on that device. Select Trust in the dialog prompt when first connecting the iOS device to your Mac.
    Then, go to the Settings app on the iOS device, select General > Device Management and trust your Certificate.
  • If automatic signing fails in Xcode, verify that the project’s General > Identity > Bundle Identifier value is unique.

Start your app by running flutter run.

Android Setup

Install Android Studio

  • Download and install Android Studio.
  • Start Android Studio, and go through the ‘Android Studio Setup Wizard’. This installs the latest Android SDK, Android SDK Platform-Tools, and Android SDK Build-Tools, which are required by Flutter when developing for Android.

Set up your Android device

To prepare to run and test your Flutter app on an Android device, you’ll need an Android device running Android 4.1 (API level 16) or higher.

  • Enable Developer options and USB debugging on your device. Detailed instructions are available in the Android documentation.
  • Windows-only: Install the Google USB Driver.
  • Using a USB cable, plug your phone into your computer. If prompted on your device, authorize your computer to access your device.
  • In the terminal, run the flutter devices command to verify that Flutter recognizes your connected Android device.

By default, Flutter uses the version of the Android SDK where your adb tool is based. If you want Flutter to use a different installation of the Android SDK, you must set the ANDROID_HOME environment variable to that installation directory.

Set up the Android emulator

To prepare to run and test your Flutter app on the Android emulator, follow these steps

  • Enable VM acceleration on your machine.
  • Launch Android Studio > Tools > Android > AVD Manager and select Create Virtual Device. (The Android submenu is only present when inside an Android project.)
  • Choose a device definition and select Next.
  • Select one or more system images for the Android versions you want to emulate, and select Next. An x86 or x86_64 image is recommended.
  • Under Emulated Performance, select Hardware – GLES 2.0 to enable hardware acceleration.
  • Verify the AVD configuration is correct, and select Finish.
    For details on the above steps, see Managing AVDs.
  • In Android Virtual Device Manager, click Run in the toolbar. The emulator starts up and displays the default canvas for your selected OS version and device.

Install Flutter and Dart plugins

  • Start Android Studio.
  • Open plugin preferences ( Preferences > Plugins on macOS, File > Settings > Plugins on Windows ).
  • Select Marketplace, select the Flutter plugin and click Install.
  • Click Yes when prompted to install the Dart plugin.
  • Click Restart when prompted.

That’s all about how to install flutter on mac with xcode.We will see other flutter concepts in the next posts.

Do like and share if you find this post helpful.Thank you!!


Flutteris actually a SDK/framework on top of the Dart programming language.

To install Flutter with Visual Studio Code you will have to perform several tasks which we will layout here. I have chosen Visual Studio Code (VSC) because both are supported on multiple platforms, don’t require huge amounts of resources to run, and are free to use.

To get this system working you will need to:

  • Install the Flutter SDK (Software Development Kit)
  • Install Visual Studio Code
  • Install the Flutter Extension for VSC

Installing the Flutter SDK

Flutter Mac Download

Go to the Flutter website (https://flutter.dev/) and click on the links to Docs.

Click on the Get Started button on the left side. Then click the Install Link.

This will take you to a download page for different Operating Systems. Pick your appropriate system. If you are using VSC, then you will probably be picking Windows, Mac, or Linux, although you can also download Flutter for ChromeOS.

For Windows at least, you just get a download zip file. You will need to extract the file contents to a folder. Some installation instructions recommend not putting it in C:Program Files because of elevated permissions in that folder. Instead, they recommend putting it in either C:Flutter or C:<user name>Flutter which is what I personally did.

Flutter Mac Download

Flutter Mac Download

Setting your Path Environment Variable

Since there isn’t an “installer” for the Flutter SDK, you need to tell your system where it can find it. This is through a path environment variable. How you set it will be dependent upon your operating system. I will walk you through where to modify it under Windows 10.

  1. Right click on your Windows button (usually found in the bottom left corner of your screen)
  2. Click on “System” from the pop up window.
  3. On the right side of the new screen, click on Advanced System Settings.
  4. Click on the button Environment Variables, which should be in the bottom right of that new window.
  5. A new window will appear, which has two halves. We are concerned about the bottom – System Variables
  6. Scroll down until you see on Path, then double click on that line.
  7. In the new window, Click on the button that says New
  8. Type in the path to where you installed Flutter. For example: C:<user name>Flutter
  9. Click OK on each of the windows, until they all are closed that were open during this process.

Flutter Mac Download Crack

Installing Visual Studio Code

Go to https://code.visualstudio.com/download and pick the download that is appropriate for your operating system. At this time, VSC supports Windows, Mac, and Linux.

Note: You may need to know what type of processor you have.

Once you have downloaded the file, run the installer based upon the instructions. For Windows, it opened a wizard to install.

Installing the Flutter Extension

Luckily, installing the Flutter extension is fairly simple.

Flutter Os

  1. Open Visual Studio Code
  2. Open Extensions on the left panel
  3. Search for Flutter
  4. Install the Flutter extension. I choose the first one.

Testing the install

Flutter Free Download

Once you have all of the components installed you will want to test to make sure it works.

Flutter Mac M1

In VSC, on the PC press CTRL-SHIFT-P (On Mac CMD-SHIFT-P) to open the command.

Type in Flutter – Doctor – it should come up for you, and run that command. It will verify that Flutter is installed and accessible to VSC.

Flutter mac download

Installing Flutter to use with Visual Studio Code was originally found on Access 2 Learn