Home

Published

- 1 min read

Is there any callback to tell me when “build” function is done in Flutter?

img of Is there any callback to tell me when “build” function is done in Flutter?

The solution for this is noted below

Is there any callback to tell me when “build” function is done in Flutter?

Solution

   build() is sync, so if you execute something async in build()
it will be executed after build() is done.

Try other methods by searching on the site. That is if this doesn’t work