hgl
hgl

Reputation: 2214

How to check if the app is minimized in background in flutter?

Is there an API to check if the app is minimized but haven't being killed yet so it's in background?

I googled it and also also search in GitHub issues, couldn't fine one.

Does such API exist?

Upvotes: 9

Views: 8972

Answers (1)

Mikhail Ponkin
Mikhail Ponkin

Reputation: 2711

You can add WidgetsBindingObserver mixin to one or more of your widgets and listen to AppLifecycleState.

Here is documentation and example

Upvotes: 9

Related Questions