Does flutter have a method like Activity.resume() which can tell developer the user has gone back to the activity.
When I pick the data from internet in
Only StatefulWidget hold state . Lifecyle of it is as follow
AppLifecycleState are as follows
inactive - The application is in an inactive state and is not receiving user input. iOS only
paused - The application is not currently visible to the user, not responding to user input, and running in the background.
resumed - The application is visible and responding to user input.
suspending - The application will be suspended momentarily. Android only