Table of Contents
π Welcome to Episode 3 of the Zero to Hero in Flutter series!
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
Download Android Studio from the official website:
π Android Studio DownloadInstall Android Studio and launch it.
Follow the Setup Wizard to install the required SDKs and tools.
Step 2: Install Flutter & Dart Plugins
Open Android Studio.
Navigate to Settings/Preferences β Plugins.
Search for Flutter and click Install.
It will prompt you to install Dart (required for Flutter). Click OK.
Restart Android Studio.
Setting Up VS Code for Flutter
Step 1: Install VS Code
Download VS Code from:
π VS Code DownloadInstall and launch VS Code.
Step 2: Install Flutter & Dart Extensions
Open VS Code.
Go to the Extensions Marketplace (Ctrl + Shift + X).
Search for Flutter and click Install.
Search for Dart and click Install.
Configuring Emulators & Devices
Option 1: Using an Android Emulator
Step 1: Create an Emulator in Android Studio
Open Android Studio.
Go to AVD Manager (Tools β Device Manager).
Click Create Virtual Device.
Choose a Pixel device (recommended).
Select the latest Android version (API 33 or higher).
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
Open Settings on your Android device.
Go to About Phone β Tap Build Number 7 times to enable Developer Mode.
In Developer Options, enable USB Debugging.
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!