RenderObjects are those particular “Objects” responsible for controlling the sizes, layouts, and logic used for painting widgets to the screen and forming the UI for the application . You can say that the actual rendering happens in RenderObjects.22 Kas 2021
Read moreWhat is widget build?
A widget’s main job is to implement a build() function, which describes the widget in terms of other, lower-level widgets . The framework builds those widgets in turn until the process bottoms out in widgets that represent the underlying RenderObject , which computes and describes the geometry of the widget.
Read more