skip to Main Content

hello everyone follows beginner in flutter I want to move from flutter sdk3.10.3 to sdk3.10.5, how to do it?
Kind regards

hello everyone, beginner in flutter I want to move from flutter sdk3.10.3 to sdk3.10.5, how to do it? Kind regards

2

Answers


  1. Just try with

    flutter upgrade 
    

    If not workings try with

    flutter upgrade --force
    

    Still if you face any error you can follow the officlal document. Else you can directly download the specific sdk from the following link

    Login or Signup to reply.
  2. You can actually use Flutter Version Management(FVM) for your version management.

    You can install any version with it. So you have access to all your versions.

    https://fvm.app/docs/getting_started/overview

    Above is a link to get started. The documentation is straight forward, for both installation and usage.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search