o1298098 / Flutter-Movie

😎 🎬 A Flutter movie app build with Fish-Redux and The Movie DB api.
Apache License 2.0
720 stars 220 forks source link

Redraw Performance #21

Closed henry-hz closed 4 years ago

henry-hz commented 4 years ago

Amazing project !!! I was wandering if the pattern of using functions to granulate the view code (and solve the brackets hell) is the best alternative, once you keep redrawing a lot of unseeded components. Please, review the approach in this article and let me know if it's relevant.

o1298098 commented 4 years ago

Indeed, I used a lot of _buildWidget functions before, because for convenience, I changed some of them back to StatelessWidget in the last few updates.

o1298098 commented 4 years ago

I plan to replace all _buildWidget functions in the next update

henry-hz commented 4 years ago

@o1298098 thanks for the feedback