RenderObjectWidget class abstract
Base class for widgets that manage RenderObjects
RenderObjectWidget creates and configures RenderObjects that handle layout and painting. This follows the Flutter pattern of Widget → Element → RenderObject.
- Inheritance
- Implementers
Constructors
- RenderObjectWidget({Key? key})
-
Creates a RenderObjectWidget.
const
Properties
Methods
-
createElement(
) → Element -
Create the appropriate Element for this RenderObjectWidget
override
-
createRenderObject(
BuildContext context) → RenderObject - Create the RenderObject for this widget
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
updateRenderObject(
BuildContext context, covariant RenderObject renderObject) → void - Update the RenderObject with new configuration
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited