Usman Hafeez
Usman Hafeez

Reputation: 59

app crash without any logs and freeze overall mobile phone for a while after crash

I am building an ecommerce app... after some events in app like listview scroll and some page navigations the app crashes without any logs and freeze overall mobile phone for a while... can someone give me hint how can i detect that why my app crashes and why it freeze phone

Upvotes: 0

Views: 247

Answers (2)

user3673397
user3673397

Reputation: 34

you can try Devtools Performance View. https://docs.flutter.dev/development/tools/devtools/performance It's only for mobile devices. So you can figure out, when your CPU get in trouble, with CPU Profiler.(for example)

Upvotes: 1

user3673397
user3673397

Reputation: 34

maybe you have used addListener and forgot to removeListener.enter link description here

Upvotes: 0

Related Questions