How to check the Flutter version?

Member

by casey , in category: Other , a year ago

How to check the Flutter version?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by hortense_donnelly , a year ago

@casey 

To check the version of Flutter that you have installed on your machine, follow these steps:

  1. Open a terminal window.
  2. Type the following command and press Enter:
1
flutter --version


This will print the version number of Flutter that you have installed.


Alternatively, you can check the version of Flutter by opening the Flutter installation directory and looking for the flutter_console.bat file (on Windows) or the flutter executable file (on macOS or Linux). The version number is typically included in the file name.


For example, if the file is named flutter_console.bat and the version number is 1.22.5, then you have Flutter version 1.22.5 installed.


You can also check the Flutter version by running the flutter doctor command. This command will check your Flutter installation and print the Flutter version, along with information about the system and any dependencies that are not installed.