Open links in new tab
  1. Flutter development in Android Studio offers a complete IDE experience with tools for coding, debugging, and UI design. Below is a step-by-step guide to set up and create your first Flutter app.

    Install and Configure Flutter Plugin

    1. Open Android Studio → Go to File > Settings (or Ctrl + Alt + S).

    2. Select PluginsMarketplace.

    3. Search for Flutter → Click Install.

    4. When prompted, also install the Dart plugin.

    5. Restart Android Studio.

    Create a New Flutter Project

    1. From the Welcome screen, click New Flutter Project (or File > New > New Flutter Project).

    2. Select Flutter Application → Click Next.

    3. Set: Flutter SDK Path Project Name, Description, and Location Company Domain (e.g., com.example)

    4. Click Finish to generate the starter project.

    Edit the Main Dart File

    Replace lib/main.dart with:

    import 'package:flutter/material.dart';

    void main() => runApp(MyApp());

    class MyApp extends StatelessWidget {
    @override
    Widget build(BuildContext context) {
    return MaterialApp(
    title: 'Hello World Demo',
    theme: ThemeData(primarySwatch: Colors.blue),
    home: MyHomePage(title: 'Home Page'),
    );
    }
    }

    class MyHomePage extends StatelessWidget {
    final String title;
    MyHomePage({Key? key, required this.title}) : super(key: key);

    @override
    Widget build(BuildContext context) {
    return Scaffold(
    appBar: AppBar(title: Text(title)),
    body: Center(child: Text('Hello World')),
    );
    }
    }
    Copied!
  1. Android Studio and IntelliJ - Flutter

    Feb 9, 2026 · Learn how to develop Flutter apps in Android Studio and other IntelliJ products.

  2. Creating Simple Application in Android Studio - Online Tutorials Library

      1. − Open Android Studio.
      2. − Create Flutter Project. For this, click File → New → New Flutter Project.
      3. − Select Flutter Application. For this, select Flutter Application and click Next.
      4. − Configure the application as below and click Next.
      5. − Configure Project.

    Code sample

    void main() => runApp(MyApp());
    class MyApp extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
        return MaterialApp(...
  3. Creating a Flutter Project in Android Studio | Codecademy

    • Congratulations! We used the Android Studio wizard to create and run our first app! Let’s review some of what we learned: 1. Android Studio includes a wizard allowing us to create a new Flutter project. 2. Once we create the project, a code editor opens, allowing us to see all the files and created code. 3. We can then run our Flutter app in the Ch...
    See more on codecademy.com
  4. Flutter - Basic Application - Android Studio - Example - Tutorial Kart

      1. Start Android Studio and click on “Start a new Flutter project”.
      2. Select Flutter Application under New Flutter Project.
      3. Configure the new Flutter application. You may leave the default values as is or …
      4. Provide the company domain and click on Finish.
      5. Run on Android Device. You may setup virtual Android Device using AVD in …
  5. Flutter Tutorial – How to Develop an App with Flutter …

    Apr 26, 2024 · In this tutorial, you will learn how to build your first Flutter app, from developing the concept to publishing on the App Store. I'll teach you how to …

  6. People also ask
    Loading
    Unable to load answer
  7. Guide to Open and Run an Existing Flutter App in Android Studio

    May 4, 2025 · This comprehensive guide walks you through the complete process of setting up and running an existing Flutter application in Android Studio.

  8. Creating a Simple Application in Flutter - GeeksforGeeks

    Mar 13, 2025 · The intention behind this article is to guide readers through the process of building an application through Flutter by creating a simple Flutter App …

  9. Set up Android development - Flutter

    2 days ago · Learn how to set up your development environment to run, build, and deploy Flutter apps for Android devices.

  10. How to Install and Set Up Flutter with Android Studio - YouTube

    Jan 1, 2025 · This guide walks you through the step-by-step process of installing Flutter and configuring it to work with Android Studio.

    • Author: Codes Easy
    • Views: 55.1K