#flutter-widgets
Read more stories on Hashnode
Articles with this tag
I used to think everything on the screen gets redrawn by flutter pixel by pixel when setstate is called. That would actually result in performance...
In flutter, a widget is either stateful or stateless. Widgets that change appearance are stateful. for example, it can change its appearance in...
In flutter everything is a widget, and an app is simply a widget made up of other widgets that come together to form a widget tree. Well, these...