Reputation: 59
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
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
Reputation: 34
maybe you have used addListener and forgot to removeListener.enter link description here
Upvotes: 0