Home > Net >  I have updated flutter sdk version to 2.10.0 but in terminal error coming saying : current version i
I have updated flutter sdk version to 2.10.0 but in terminal error coming saying : current version i

Time:08-01

i have updated the sdk version of flutter to 2.10.0 but still old version (2.8.0) is showing in terminal due to which i am unable to use google fonts in my app as the google fonts require sdk version >=2.10.0. I Have used these two commands to upgrade - flutter upgrade and flutter pub get

CodePudding user response:

Check for version file in flutter SDK. Open the flutter SDK folder and open the version file. It use to have a version specified, also check for the flutter version in VS Code at the bottom bar. If both are 2.10.0, then just flutter clean the project and rebuild. IF 2.8.0 is still there, download 2.10.0 zip file and unzip and replace the flutter SDK path.

CodePudding user response:

You would check your flutter's SDK version through the below command

flutter doctor -v

enter image description here Once you type above command, the system will show you about the current config

  • Related