Flutter Setup

This section will give you brief about how can you setup flutter

Flutter setup for Windows

Follow the setps below and you will reach the destination for which you are trying.

Step 1: Download Flutter SDK

  1. Visit the official Flutter website flutter.dev.
  2. Download the Flutter SDK for Windows (Stable Channel).

Step 2: Extract the Flutter SDK

  1. After downloading, right-click the .zip file and select extract all.
  2. Extract to a path like C:\src\flutter. Ensure there are no spaces in the folder path.

Step 3: Add Flutter to the Environment Path

  1. Press Windows Key + S and search for Environment Variables, then select Edit the system environment variables.
  2. In the System Properties window, click on Environment Variables.
  3. Under System variables, select Path, and click Edit.
  4. Click New, then add the path to flutter\bin (e.g., C:\src\flutter\bin).
  5. Click OK to save

Step 4: Install Development Tools

Option 1: Android Studio

  1. Download Android Studio from here.
  2. Follow the installation process.
  3. Once installed, go to Configure > SDK Manager, and ensure Android SDK is installed.
  4. Set up an Android Virtual Device (AVD) via AVD Manager for running your app on an emulator.

Option 2: Visual Studio Code

  1. Download and install Visual Studio Code from here.
  2. Open VS Code and go to the Extensions Marketplace.
  3. Search for and install the Flutter and Dart extensions.
  4. These extensions will allow you to develop and run Flutter apps directly from VS Code.

Step 5: Flutter Doctor

  1. Open Command Prompt and run the following command to check for any missing dependencies:
flutter doctor
  1. The flutter doctor command will list any remaining tools or configurations needed for a complete setup.

Follow this video to install flutter on windows