Install Flutter by Homebrew on Mac
Flutter is easier to install on any Mac, just install it by Homebrew. It will install both flutter and dart.
brew install flutter
Check the version of Flutter
flutter --version
Check the version of Dart
dart --version
If you are looking for instructions for Windows or Linux, please click here. To install Flutter on Mac, please follow these instructions.
Test the Flutter on Terminal
Now open the terminal and type flutter, you should see the list of available commands. It means Flutter is installed successfully on your Mac.
But we are not finished yet, Mac needs a few more stuff.
Now type flutter doctor on the terminal just like brew doctor. It will check for errors. Install all the required dependencies from Homebrew.
Now you are ready to go.