skip to Main Content

i have multiple project that are running in latest stable flutter version but i want one of my project to run on 3.7.12

i downloaded both latest and 3.7.12 and updated the path of both the versions now all projects are running in latest version ,how can i run one project in the older version

i tried to export the path with in the root directory of the project by entering the command
export PATH="/Users/quiklyz01/development/frameworks/flutter_3.7.12/bin:$PATH"

3

Answers


  1. User FVM Flutter version management tool for Flutter

    For more details visit FVM

    Login or Signup to reply.
  2. Instead of FVM, as others have suggested, take a good look at Puro. It’s faster, more space-efficient, integrates better with the major IDEs, and includes a dart "eval" function and a dart REPL!

    I’m a former FVM user, but have been using Puro for at least six months now, and will never go back.

    Login or Signup to reply.
  3. You can either download older version manually and replace that your latest version folder with older version
    
    OR
    
    You can also use Flutter version management FVM
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search