Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to take screen shots of mobile debug device running Flutter application in Android Studio?

Using Android Studio for developing flutter replaces the LogCat console with the run tab.

This works great, but how do I take a screen shot of my debugging device? Previously I used to expand the LogCat side menu and click on the capture image button, but now I can't find it anywhere.

like image 413
Joel Broström Avatar asked Jul 02 '19 13:07

Joel Broström


3 Answers

flutter screenshot cli command saves a png screenshot. I could not find how to do it in IntelliJ interface, either.

like image 94
Gazihan Alankus Avatar answered Sep 24 '22 14:09

Gazihan Alankus


For Windows, while running the command flutter run, you can always press s from your keyboard to take a screenshot. Note that the screenshots are saved on the root of your project folder.

like image 20
Martins Avatar answered Sep 22 '22 14:09

Martins


If using the emulator on mac, cmd + s should take a screenshot.

like image 26
Sergio Bernal Avatar answered Sep 22 '22 14:09

Sergio Bernal