Flutter's Windows Chinese super detailed installation tutorial collection, front-end configuration development Flutter stepping pit notes, and related basic grammar

insert image description here

Flutter Chinese detailed installation tutorial

1. First install the java SDK, first create a new parent folder Java blank, and create two sub-folders jdk, jre
installation tutorial reference link: https://blog.csdn.net/siwuxie095/article/details/53386227

2. Install Android editor and SDK
download address: http://www.android-studio.org/index.php/download/hisversion
Installation tutorial: https://blog.csdn.net/hahahhahahahha123456/article/details/80651359
Chinese Tutorial: http://www.android-studio.org/index.php/chinese
Editor Error Tutorial: https://blog.csdn.net/zshuaihua/article/details/47953765
Add: Add the following code to C :\Program Files\Android\Android Studio\bin\idea.properties (corresponding to your own installation directory)
disable.android.first.run=true

3. Install Fluuter
installation tutorial: https://blog.csdn.net/qq_36636969/article/details/82686857

4. Flutter detailed Chinese book tutorial
Detailed link: https://book.flutterchina.club/

Solutions to Android SDK-related problems

https://www.jianshu.com/p/d2a0a1c39728
https://blog.csdn.net/liy010/article/details/82078484

Flutter-related syntax

flutter doctor

It may prompt Android license status unknown, which is a certificate authorization problem: please execute flutter doctor --android-licenses Here you need to bypass the wall

Run flutter doctor --android-licenses and accept all licenses

flutter emulators find virtual machines

flutter emulator --launch Pixel_XL_API_25 Run and start the related virtual machine

Flutter run run error solution: https://www.jianshu.com/p/b63f51544902

Virtual machine solution tutorial: https://www.cnblogs.com/csulennon/p/4178404.html

Common commands and meanings of flutter

–version View Flutter version
-h or **–help** Print all command line usage information
analyze Analyze the Dart code of the project.
build Flutter build command.
channel List or switch Flutter channels.
clean removes the build/ directory.
config configures Flutter settings.
create creates a new Flutter project.
devices lists all connected devices.
doctor Displays information about installed tools.
drive runs the Flutter driver tests for the current project.
format Format one or more Dart files.
fuchsia_reload Hot reload on Fuchsia.
help Flutter that displays help information.
install Installs the Flutter app on the attached device.
logs shows the log output for running a Flutter application.
The packages command is used to manage Flutter packages.
precache populates the Flutter tooling binary artifact cache.
run Run your Flutter app on the attached device.
screenshot Takes a screenshot from a connected device.
stop Stops the Flutter app on the attached device.
test Flutter unit tests for the current project.
trace starts and stops tracing a running Flutter application.
upgrade upgrades your copy of Flutter.

This article is original, and it is not easy to be original. If you need to reprint, please contact the author for authorization.

Guess you like

Origin blog.csdn.net/qq_36034945/article/details/128642914
Recommended