Some tips in Flutter

Oliver Nguyen
Nov 25, 2020

Android Studio 4.1+

Issues:

✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.

Solved by this command:

ln -s ~/Library/Application\ Support/Google/AndroidStudio4.1/plugins ~/Library/Application\ Support/AndroidStudio4.1

Install

Open or create .bash_profile

nano ~/.bash_profile

Edit and insert

export PATH=[PATH_TO_FLUTTER_GIT_DIRECTORY]/flutter/bin:$PATH

e.g: export PATH=~/Documents/flutter/bin:$PATH

Save and verify by running: echo $PATH

--

--