Install and Setup Flutter on MAC OS Catalina

  • Download Flutter from https://flutter.dev/docs/get-started/install/macos
  • Unzip file and remember the folder path where you put unzipped flutter
  • In terminal type : vim ~/.zshrc and type following syntact
//replace 'pwd' with your path to unzipped flutter folder
export PATH="$PATH:`pwd`/flutter/bin"
  • and type : flutter –version
  • If you see flutter version, then you have successfully install flutter

Configure Android Studio

  • Download android studio and install from https://developer.android.com/
  • Run the standard installation would be enough
  • After Android Studio Installation is finish, start android studio. On the bottom right click configure -> plugin
  • Search and install Flutter plugin and then restart the IDE.
  • Finish, your flutter is configured with Android Studio

Leave a Reply

Your email address will not be published. Required fields are marked *