I have a ListView in my project. Flutter version is 3.27.3, Sentry 8.3.0
Every time I scroll I get the following in the console
I/GestureDetector(28852): obtain mCurrentMotionEventRaw. action: 2 id: 255436774
D/Sentry (28852): Unable to find scroll target. No breadcrumb captured.
D/Sentry (28852): Unable to find scroll target. No breadcrumb captured.
D/Sentry (28852): Unable to find scroll target. No breadcrumb captured.
D/Sentry (28852): Unable to find scroll target. No breadcrumb captured.
last line repeated many times.
It seems to be causing friction to the scrolling behavior, as it runs less smoothly on this output.
This article helped in my app when I was getting this logs Sentry breadcrumbs. Basically, breadcrumbs are the events triggered before an error. And the logs you are getting are ui breadcrumbs, you can disable this logs by adding a meta tag in AndroidManifest.xml
<application>
<!-- To disable the user interaction breadcrumbs integration -->
<meta-data android:name="io.sentry.breadcrumbs.user-interaction" android:value="false" />
</application>
If this doesn't work for you, please add the ListView widget.