Home > Software design >  Flutter : init called
Flutter : init called

Time:05-07

I'm trying to work on my fantasy app, and the app is working fine, but as soon as I open the keyboard to type something, I'm getting a message in debug console as "I/flutter (30431): init called", which I'm not sure what it is about. So I just want to know what exactly is happening here. I'm adding the picture of my Debug Console

CodePudding user response:

It's just Information message that Flutter engine initiate invoking some internal methods to start the keyboard showing and interacting.

No big thing just for flutter team debug purposes and to you for knowing when the keyboard has displayed on screen, Don't worry about it.

CodePudding user response:

I'm not too familiar with flutter, but I looked up the issue and found this thread on github. So all rights go to rrousselGit, and his solution.

Here is the link to read more:

But he said, that the dispose order is not reversed when the keys of a hook change.

  • Related