Installation & set up flutter and run the first app Hello world in Flutter using Android studio
Here, I am assuming, you already installed Android studio. I am detailing the step by step to install and run the first flutter app with screen shots. We can directly get into the field, 1. Launch Android studio 2. From the Android studio tab, select preferences 3. From the pop-up opened, from left side pane, click on plugins 4. Make sure you selected market place tab here, not the installed one. 5. Initially install Dart language 6. Similalrly, install Flutter plugin 7. Now, download the flutter SDK from the link for macOS here 8. Now set the environment variable, the steps are, 1. Open terminal. 2. vim $HOME/.zshrc 3. Press "I" key for going to insert mode.
4. add the following line in the opened file:
export PATH="$PATH:/YOUR_FLUTTER_DIR/flutter/bin"
5. Press "Esc" then write :wq! in terminal and press enter to exit vim.
6. Reopen the terminal and check "flutter doctor" 9. Now go to Android studio and click new flutter project from Fi...