Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check the installed version of Flutter?

How do I find the version of Flutter I have installed on my computer?

like image 932
user8637708 Avatar asked Mar 02 '19 08:03

user8637708


People also ask

How do I check flutter version?

Checking Flutter SDK Version and Channel You'll see something like below in your terminal window: Doctor summary (to see all details, run flutter doctor -v): [✓] Flutter (Channel stable, 2.10. 3, on macOS 12.1 21C52 darwin-x64, locale en) [✓] Android toolchain - develop for Android devices (Android SDK version 31.0.

How do I know if DART is installed?

To check if you have Dart installed already, use the which dart command (on MacOS). Otherwise, install the SDK using the instructions for your machines operating system.


2 Answers

use the following command

flutter --version 
like image 172
Sami Kanafani Avatar answered Sep 27 '22 02:09

Sami Kanafani


Flutter

  • Version:

    flutter --version 
  • SDK location:

    where flutter 
  • Detailed information:

    flutter doctor -v 
  • Upgrade

    flutter upgrade 
  • Change channel to, say beta

    flutter channel beta flutter upgrade 

Dart

  • Version:

    dart --version 
  • SDK location:

    where dart 
like image 31
CopsOnRoad Avatar answered Sep 25 '22 02:09

CopsOnRoad