Setting Up Android Studio & VS Code, Configuring Emulators, and Running Your First Flutter App

Now that we have Flutter installed on Windows and macOS, it’s time to set up our development environment, configure emulators, and run our first Flutter app!

By the end of this article, you’ll have:

βœ… Android Studio & VS Code set up for Flutter development
βœ… Emulator or real device connected for testing
βœ… Your first Flutter app running on your device

Choosing Your IDE: Android Studio vs. VS Code

You can use Android Studio or Visual Studio Code (VS Code) to develop Flutter apps. Here’s a quick comparison

For beginners, Android Studio is recommended because it provides a complete Flutter development environment with an integrated Android Emulator. However, VS Code is a great choice for lightweight development.

Setting Up Android Studio for Flutter

Step 1: Install Android Studio

  1. Download Android Studio from the official website:
    πŸ‘‰ Android Studio Download

  2. Install Android Studio and launch it.

  3. Follow the Setup Wizard to install the required SDKs and tools.

Step 2: Install Flutter & Dart Plugins

  1. Open Android Studio.

  2. Navigate to Settings/Preferences β†’ Plugins.

  3. Search for Flutter and click Install.

  4. It will prompt you to install Dart (required for Flutter). Click OK.

  5. Restart Android Studio.

Setting Up VS Code for Flutter

Step 1: Install VS Code

  1. Download VS Code from:
    πŸ‘‰ VS Code Download

  2. Install and launch VS Code.

Step 2: Install Flutter & Dart Extensions

  1. Open VS Code.

  2. Go to the Extensions Marketplace (Ctrl + Shift + X).

  3. Search for Flutter and click Install.

  4. Search for Dart and click Install.

Configuring Emulators & Devices

Option 1: Using an Android Emulator

Step 1: Create an Emulator in Android Studio

  1. Open Android Studio.

  2. Go to AVD Manager (Tools β†’ Device Manager).

  3. Click Create Virtual Device.

  4. Choose a Pixel device (recommended).

  5. Select the latest Android version (API 33 or higher).

  6. Click Finish and start the emulator.

βœ… Now, your emulator is ready to run Flutter apps!

Option 2: Using a Physical Android Device

Step 1: Enable Developer Mode & USB Debugging

  1. Open Settings on your Android device.

  2. Go to About Phone β†’ Tap Build Number 7 times to enable Developer Mode.

  3. In Developer Options, enable USB Debugging.

  4. Connect your phone via USB.

Step 2: Verify Device Connection

Run the following command in Command Prompt (Windows) or Terminal (macOS):

				
					flutter devices
				
			

If your device appears in the list, you’re ready to go! πŸŽ‰

Writing & Running Your First Flutter App

Step 1: Create a New Flutter Project

Run the following command in a terminal:

				
					flutter create my_first_app
				
			

Navigate to the project folder:

				
					cd my_first_app
				
			

Step 2: Open the Project in Your IDE

  • In Android Studio: Click Open β†’ Select my_first_app folder. Wait for dependencies to load.

  • In VS Code: Click File β†’ Open Folder β†’ Select my_first_app

Step 3: Run the Flutter App

Run the following command in the terminal:

				
					flutter run
				
			

OR
Click the Run button in Android Studio or VS Code.

Your first Flutter app should now be running on the emulator or real device!

Understanding the Default Flutter App Structure

When you create a new Flutter project, you’ll see these important files:

  • πŸ“ lib/main.dart β†’ The main entry point of your Flutter app.

  • πŸ“ pubspec.yaml β†’ Configuration file for dependencies & assets.

  • πŸ“ android/ β†’ Android-specific code.

  • πŸ“ ios/ β†’ iOS-specific code.

  • πŸ“ test/ β†’ Unit test files.

Common Errors & Fixes

❌ Flutter command not found?
βœ… Make sure Flutter is added to PATH (flutter doctor).

❌ Emulator not starting?
βœ… Check if HAXM (Intel Virtualization) is enabled in BIOS.

❌ Device not detected?
βœ… Run flutter doctor to check if USB debugging is enabled.

Conclusion

You have now successfully: βœ… Set up Android Studio & VS Code for Flutter development
βœ… Configured an Android Emulator or Physical Device
βœ… Created and ran your first Flutter app

πŸŽ‰ Congratulations! You’re now ready to start building Flutter apps! πŸš€

πŸ“Œ Next Episode: Understanding Flutter Widgets & UI Components!

Leave a Reply

Your email address will not be published. Required fields are marked *