Downloading Flutter:

https://flutter.dev

Making sure Flutter can be accessible from anywhere in your file system (add this to a file called .zshrc in your home directory):

export PATH="$PATH:[PATH_OF_FLUTTER_DIRECTORY]/bin"

Visual Studio Code:

https://code.visualstudio.com

Making sure Visual Studio Code can be accessible from anywhere in your file system (also in .zshrc):

code () { VSCODE_CWD="$PWD" open -n -b "com.microsoft.VSCode" --args $* ;}

Android Studio:

https://developer.android.com/android-studio/download

Accepting Android licenses:

flutter doctor --android-licenses

Get the Command Line Tools for CocoaPods:

https://developer.apple.com/downloads/index.action

Installing cocoapods:

sudo gem install -n /usr/local/bin cocoapods

ls = lists the files in the current directory

mkdir = makes a new directory in the current directory

 

More Videos