How to force Flutter to rebuild / redraw all widgets?

Your Widget should have a setState() method, everytime this method is called, the widget is redrawn.

Documentation : Widget setState()

Leave a Comment