skip to Main Content

I’ve just switched to Android Studio and started developing a Flutter application. However, when I have an error in a code there’s no information on the bottom displayed. Usually, either in PyCharm or Intellij short error description was displayed.

Now, to figure out what’s wrong I need to click Command + F1 and then eventually pop up is displayed. The second option is to click top right side of the screen to have a summary of the errors, but that’s no what I’m looking for.
enter image description here

Is it possible to restore the functionality like it’s in PyCharm?
enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    Eh, for anyone wondering, it turned out that you can disable "New UI" which was released in 2024.

    The solution is simply to:

    1. From the main menu, navigate to File | Settings | Plugins | Marketplace
    2. Search for classic ui
    3. Click the Install button
    4. Restart the IDE to get the old UI back

    Full answer can be found here


  2. Click on the (!) icon on the left to display description of all errors in the file:

    enter image description here

    (encircled in blue)

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