Android Studio-Flutter installation tutorial

Insert picture description here

What is Flutter?

Flutter is built by a team of Google engineers to create high-performance, cross-platform mobile applications. Flutter is optimized for current and future mobile devices, focusing on low-latency input and high frame rates for Android and iOS.
Flutter can provide developers with a simple and efficient way to build and deploy cross-platform, high-performance mobile applications; provide users with a beautiful and fast app experience.

1. Download the Flutter SDK development kit

Link: Flutter development kit .

Second, configure environment variables

Environment variables in the systempathAdd just downloadedflutterroute of. willbinFile path added topathin
Insert picture description here

Third, execute the flutter doctor command in the Windows command line cmd

flutter doctor will automatically detect the current development environment configuration and automatically download missing files. The download process is relatively time-consuming, so wait patiently for a while
. The welcome screen will appear on the first time the friend who executes flutter doctor, and then wait for a while.
Insert picture description here

Some will have the above situation, emm... directly runrun: Backflutter doctor --android-licenses Just press it all the wayYJust fine, just a bunch of various terms of use don’t care
Insert picture description here

In the last run, our doctor flutter doctor
Insert picture description here
emm is full of small tick marks, (๑>؂<๑) It ended perfectly, so don’t worry.

Fourth, the last step

Android Studio installs Dart and Flutter plugins

Android Studio -> File -> Settings -> Plugins->Marketplace
Insert picture description here

Create a Flutter project

After the plug-in is installed, restart Android Studio to create a new project and you will find that the option to create a Flutter project has been added.
Insert picture description hereThen all the way to Next

At this point, our Flutter is installed (๑>؂<๑)

Whispers

Life must be bitter, and how much fun you can find in suffering depends on your personal abilities.

Guess you like

Origin blog.csdn.net/Abner_leader/article/details/115003926