skip to Main Content

I just updated my Flutter form 3.5.0-12.0.pre.168 to 3.6.0-1.0.pre.35 on the master channel.
Im on the master channel because on the stable channel I have troubles with keyboard inputs. But that shouldn’t have to do anything with this "problem". Actually is it not a real problem, because everything is still working.
Only the Flutter doctor has a new check that I didn’t had before or didn’t notice.
It’s checking now the Windows Version. But on my computer it is’t able to check it.
I can’t figure out why. Any suggestions?

Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel master, 3.6.0-1.0.pre.35, on Microsoft Windows [Version 10.0.19044.2251], locale de-DE)
[X] Windows Version (Unable to confirm if installed Windows version is 10 or greater)
[√] Android toolchain - develop for Android devices (Android SDK version 32.1.0-rc1)
[√] Chrome - develop for the web
[√] Visual Studio - develop for Windows (Visual Studio Community 2022 17.3.6)
[√] Android Studio (version 2021.2)
[√] VS Code (version 1.71.2)
[√] Connected device (3 available)
[√] HTTP Host Availability

! Doctor found issues in 1 category.

_

flutter --version
Flutter 3.6.0-1.0.pre.35 • channel master • https://github.com/flutter/flutter.git
Framework • revision c021d9177c (56 minutes ago) • 2022-11-10 23:36:02 -0800
Engine • revision 19ead2834a
Tools • Dart 2.19.0 (build 2.19.0-388.0.dev) • DevTools 2.19.0

5

Answers


  1. Chosen as BEST ANSWER

    It was an operation language problem. On English Windows versions the issue didn't appear. On almost every other language, in my case German it appeared though. This issue has been repaired on the master channel, see this issue on GitHub.


  2. I removed flutter SDK and installed latest SDK then this problem was solved.
    Don’t forget to set the path of environment.

    Deleting SDK took so much times… If you couldn’t remove it, just reboot PC.

    Login or Signup to reply.
  3. Write in your windows prompt o Powershell:

    C:>flutter upgrade
    C:>flutter channel master
    C:>flutter doctor -v
    
    Login or Signup to reply.
  4. I changed my channel to master from stable

    c:srcflutter>flutter channel

    Flutter channels:

    master

    main

    beta

    • stable

    so i write : flutter channel master

    after that : flutter doctor

    and it was worked..

    Login or Signup to reply.
  5. flutter channel master # Switch to the master channel
    flutter upgrade # Upgrade to the master version which includes the fix

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