Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter Outline Shows "Nothing to show" in android studio

Tags:

flutter

I am trying to extract a Widget via Flutter Outline, but I am facing below problem in Android Studio.

Flutter Outline Shows "Nothing to show"

enter image description here

After running

flutter doctor -v 

It shows:

enter image description here

How to overcome this problem?

like image 204
Md Mahmudul Islam Avatar asked Feb 17 '20 18:02

Md Mahmudul Islam


People also ask

How do you inspect element in flutter?

To debug a layout issue, run the app in debug mode and open the inspector by clicking the Flutter Inspector tab on the DevTools toolbar. Note: You can still access the Flutter inspector directly from Android Studio/IntelliJ, but you might prefer the more spacious view when running it from DevTools in a browser.


1 Answers

Move the mouse to any widget and Press Ctrl (or ⌘ command on macOS) and click on that widget.

After this step, your Flutter Outline will be enabled and showing widget tree

like image 100
A R Avatar answered Sep 29 '22 22:09

A R