How to check the installed version of Flutter? How to check the installed version of Flutter? dart dart

How to check the installed version of Flutter?


use the following command

flutter --version


As others have said use

flutter doctor

or

flutter --version

If that is not working you need to make sure that the flutter/bin directory is in your path:

echo $PATH

If it isn't see this link to add it.


Check Flutter version:

Using this shows you information about current version, framework, engine and dart version.

flutter --version

And using this lists all the flutter version that had been there so far

flutter version

Check Dart version:

dart --version