Facebook Twitter Instagram
    DeepCrazyWorld
    Facebook Twitter Instagram Pinterest YouTube
    • FLUTTER
      • FLUTTER APP
        • QRCode
        • Quiz App
        • Chat GPT
        • PDF App
        • News App
        • Fitness App
        • Weather App
        • BMI Calculator
        • GAME APP
        • Ecommerce App
        • wallpaper App
        • Finance app
        • Chat App
        • Wallet App
        • Taxi App
        • Quran app
        • Music player app
      • FLUTTER UI
        • Splash Screen
        • Onboarding Screen
        • Login Screen
        • Card Design
        • Drawer
    • PROJECT
      • Android Projects
      • College Projects
      • FLUTTER APP
      • Project Ideas
      • PHP Projects
      • Python Projects
    • SOURCE CODE
    • ANDROID
      • ANDROID APP
      • GAME APP
      • ANDROID STUDIO
    • MCQ
      • AKTU MCQ
        • RPA MCQ
        • COA MCQ
        • HPC MCQ
        • SPM MCQ
        • Renewable Energy All MCQ
        • Data Compression MCQ
        • Data Structure MCQ
        • Digital Image Processing MCQ
        • Software Engineering MCQ
        • Machine Learning MCQ
        • Artificial Intelligence MCQ
      • D PHARMA MCQ
        • Pharmaceutics – I MCQ
        • Pharmacognosy MCQ
        • Pharmaceutical Chemistry MCQ
        • Biochemistry and Clinical Pathology MCQ
        • Human Anatomy and Physiology MCQ
        • Heath Education and Community Pharmacy MCQ
    • INTERVIEW QUESTIONS
      • Flutter Interview Questions
      • INTERVIEW QUESTIONS
      • Python Interview Questions
      • Coding ninjas solution
    • MORE
      • WORDPRESS
        • SEO
        • TOP 10 WORDPRESS THEME
      • PRODUCTIVITY
      • Program
      • QUOTES
    DeepCrazyWorld
    Home»FLUTTER»How to Run first Flutter App on windows Step by step
    FLUTTER

    How to Run first Flutter App on windows Step by step

    DeepikaBy DeepikaOctober 2, 2022Updated:October 15, 2022No Comments3 Mins Read

    Run first Flutter App Project with video guide – Flutter is a free and open source UI framework that was released in 2017 and originally developed by Google. Flutter enables developers to create cross-platform applications using only one codebase. It is a fantastic tool for developers as it can drastically accelerate app development, reduce costs, and make cross-platform app updates easier.

    Table of Contents

    Toggle
    • Introduction
    • Pre-installation Requirements
    • How to Install and Configure Flutter SDK on Windows 10
    • Step 1: Download Flutter SDK
    • Step 2: Extract the Files
      • Youtube Video Guide Flutter Installation
    • Step 8: Run First Flutter App Project Successfully
    • Output
    • Conclusion
    • Related Articles:
    • READ MORE

    Introduction

    <img decoding=

    This is a guide to creating your first Flutter app. If you are familiar with object-oriented code and basic programming concepts such as variables, loops, and conditionals, you can complete this tutorial. You don’t need previous experience with Dart, mobile, desktop, or web programming.

    Pre-installation Requirements

    • Windows 10 operating system installed
    • At least 2 GB of free disk space (Additional free storage is needed for other tools and IDEs, if not already installed).
    • Windows Powershell 5.0 or newer.
    • Git for Windows version 2.0 or newer (Optional).
    • Android Studio installed.
    • Visual Studio 2022 with C++ (Optional).

    How to Install and Configure Flutter SDK on Windows 10

    After meeting all requirements, you can begin installing and configuring Flutter SDK. In today’s tutorial, you will be installing a fixed installation of Flutter SDK, without using Git.

    Step 1: Download Flutter SDK


    Download the Flutter SDK package by clicking on the following button on the webpage.

    Download Flutter SDK

    Step 2: Extract the Files


    Extract the downloaded zip file and move it to the desired location you want to install Flutter SDK. Do not install it in a folder or directory that requires elevated privileges, (such as C:\Program Files) to ensure the program runs properly. For this tutorial, it will be stored in C:\deepika\flutter.

    Youtube Video Guide Flutter Installation

    Flutter Installation

    At this point, all the tools for Flutter projects are ready to be used for the development of Flutter apps. Depending on your needs, you can start your projects in Android Studio or Visual Studio.

    Step 8: Run First Flutter App Project Successfully


    You’ll mostly edit lib/main.dart, where the Dart code lives.

    Replace the contents of lib/main.dart.
    Delete all of the code from lib/main.dart. Replace with the following code, which displays “Hello World” in the center of the screen.

    
    import 'package:flutter/material.dart';
    
    void main() {
      runApp(const MyApp());
    }
    
    class MyApp extends StatelessWidget {
      const MyApp({super.key});
    
      @override
      Widget build(BuildContext context) {
        return MaterialApp(
          title: 'Welcome to Flutter',
          home: Scaffold(
            appBar: AppBar(
              title: const Text('Welcome to Flutter'),
            ),
            body: const Center(
              child: Text('Hello World'),
            ),
          ),
        );
      }
    }

    Run the app in the way your IDE describes. You should see either Android, iOS, Windows, Linux, macOS, or web output, depending on your chosen device.

    Output

    <img loading=

    Conclusion

    This article presents the step-by-step installation and configuration of Flutter SDK then run first project of flutter on the Windows 10 operating system with youtube videos guide. Flutter SDK is continuing to be widely used in mobile, desktop, and web app development.

    Do like & share my Facebook page. if you find this post helpful. Thank you!!

    Related Articles:

    How to Install Flutter in windows 10

    How to Setup Space Between Elements In Flutter 

    Flutter Card Widget with Example

    Integrating an API into a Flutter – Working with REST APIs

    Create a simple splash screen in Flutter

    Android Projects with Source Code

    Flutter Interview Questions

    School Database Management System Project 

    Create A Simple Splash Screen UI in flutter

    Make Navigation Drawer in Flutter Source Code

    READ MORE

    Share. Facebook Twitter LinkedIn WhatsApp Telegram Pinterest Reddit Email
    Previous ArticleHow to Install Flutter in windows 10 step by step
    Next Article How to Create A Simple Splash Screen UI design in flutter

    Related Posts

    Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile

    FLUTTER 5 Mins Read

    Animated Backgrounds in Flutter: A Complete Guide

    FLUTTER 4 Mins Read

    How to make custom BottomNavigationBar in flutter with source code

    BottomNavigationBar 4 Mins Read

    How to Make a ToDo App with Flutter with source Code StepWise in 2024

    FLUTTER 4 Mins Read

    Leave A Reply Cancel Reply

    Recent Posts
    • Implementing a Dynamic FAQ Screen UI in Flutter Using ExpansionTile March 29, 2025
    • Creating an Instruction UI Screen in Flutter Application March 29, 2025
    • Animated Backgrounds in Flutter: A Complete Guide March 15, 2025
    • How to make Diary App using flutter stepwise using getx August 31, 2024
    • How to Create Music Player UI screen with fully functional in flutter August 30, 2024
    • How to make ListView Builder Ui in flutter with Source Code August 29, 2024
    • Create a TabBar View in flutter with fully functional stepwise August 28, 2024
    • How to create TabBar view in flutter with source code step wise August 27, 2024
    • How to make Heart rate measure app with Flutter stepwise August 26, 2024
    • How to make ChatGpt App in flutter with source code Stepwise August 25, 2024
    Facebook Twitter Instagram Pinterest YouTube
    • About
    • Contact
    • Disclaimer
    • Privacy Policy
    Copyright by DeepCrazyWorld © 2025

    Type above and press Enter to search. Press Esc to cancel.