-1
When we are working on Android development with Java or Kotlin usually it is using a feature similar to Listview, but on Android devices if the list is too large the application starts to load too much the phone device memory, to get around this problem is used a library called Recyclerview.
In order to be able to analyze the load in memory is necessary the Profile feature of Android Studio as shown in the image below.
When this button is triggered the application should be executed in a Profile module, and only then it would be possible to check if there is not too much memory loading. I tried to perform a test in the application of this class by placing 10 thousand records and not being able to trigger the Profile because of this error message.
There is a way to use the Profile button in Flutter applications?