Installation

  1. Download and install git for windows https://git-scm.com/download/win

    Check box using git in command prompt or PowerShell

  2. Make “src” directory for flutter in C:\src

    Do not install Flutter in a directory like C:\Program Files\ that requires elevated privileges.

  3. Git clone flutter inside src directory using window’s power shell.
    win + R –> cmd
    C:\Users\asd123> cd ../../src
    C:\src\> git clone https://github.com/flutter/flutter.git -b stable
    
  4. Update flutter path

    1. Window’s Start search bar: env (환경)
    2. Edit environment variables for your account
    3. User variables -> Path -> edit
    4. Add C:\src\flutter\bin
  5. Android toolchain
     C:\src\flutter> flutter doctor --android-licenses
    
  6. Install Android Studio and install Dart, Flutter pulgins in https://developer.android.com/studio

  7. Install VS Code and install Dart, Flutter extensions in https://code.visualstudio.com/

Reference: https://flutter.dev/docs/get-started/install/windows