The current flutter sdk version is 0.0.0-unknown.

The current Flutter SDK version is 0.0.0-unknown.

The Flutter SDK, or Software Development Kit, is a set of tools and libraries used for developing cross-platform mobile applications with the Flutter framework. It includes compilers, debuggers, and various libraries to simplify the app development process.

To check your Flutter SDK version, you can use the following command in the terminal or command prompt:

flutter --version

This command will display the version of your installed Flutter SDK.

Here is an example of the output you might see when running the flutter --version command:

    Flutter 2.2.0 • channel stable • https://github.com/flutter/flutter.git
    Framework • revision b22742018b (2 weeks ago) • 2021-05-14 19:12:57 -0700
    Engine • revision a9d88a4d18
    Tools • Dart 2.13.0
  

In this example, the Flutter SDK version is 2.2.0.

Related Post

Leave a comment