Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter version used in project

Tags:

flutter

dart

Where can I see the flutter version used in a flutter project? Is there a file inside the project directory where I can see it? I think it is not specified inside the pubscpec.yaml file

like image 714
Al Ryan Acain Avatar asked Jun 18 '26 11:06

Al Ryan Acain


2 Answers

So far, I think the specific version can not be found but only what versions can be used in a project. It can be found at the bottom part of pubscpec.lock file

pubspec.lock screenshot

like image 59
Al Ryan Acain Avatar answered Jun 20 '26 09:06

Al Ryan Acain


You can either run flutter --version to check flutter version installed on your machine or check it in your pubspec.lock file for current flutter version in your project

sdks:
  dart: ">=2.10.0-110 <2.11.0"
  flutter: ">=1.16.0 <2.0.0"
like image 20
Shubhankar Pandey Avatar answered Jun 20 '26 11:06

Shubhankar Pandey