skip to Main Content

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

2

Answers


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

    Login or Signup to reply.
  2. 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)

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search