Skip to content
root / How to install Flutter

How to install Flutter

In this article, we will install and run our first Flutter project

So the first step is to install the Flutter SDK

After you have done this extract and complete the requirements as per your Operating System

you might want to follow the instructions given below for your Operating System

After this it is time to set up your Editor :

  1. Visual Studio Code
  2. Android Studio

VISUAL STUDIO CODE

1. Got to extensions in the left sidebar and search for flutter and it might prompt you to install the Dart(Dart website) package as well

2. Then go to your Terminal/Console and type

$ flutter doctor

Here you might need to set up our Emulator(Emulator post) then add a new fluter project

$ flutter create myProject

This will setup things for you. Then open Visual studio code where you have created this project then you have it ready if you want to explore some more why don’t you see this post and see the Flutter Documentation

ANDROID STUDIO

1. When you open your Android Studio Editor you might see something like this:

Then search for flutter and it might prompt you to install the Dart package as well.

2. After you have restarted your IDE just create a flutter project using the option which looks like this

then you have it ready if you want to explore some more why don’t you see this post(Widget catalog post) and see the Flutter Documentation

 

https://www.youtube.com/watch?v=xWackbE_JQc
Tags: