Unverified Commit abf4e161 authored by creativecreatorormaybenot's avatar creativecreatorormaybenot Committed by GitHub

Docs (RenderObject): minor fix and link to more information (#49992)

parent a1143d17
...@@ -1917,6 +1917,8 @@ abstract class RenderObject extends AbstractNode with DiagnosticableTreeMixin im ...@@ -1917,6 +1917,8 @@ abstract class RenderObject extends AbstractNode with DiagnosticableTreeMixin im
/// the framework. /// the framework.
/// ///
/// Warning: This getter must not change value over the lifetime of this object. /// Warning: This getter must not change value over the lifetime of this object.
///
/// See [RepaintBoundary] for more information about how repaint boundaries function.
bool get isRepaintBoundary => false; bool get isRepaintBoundary => false;
/// Called, in checked mode, if [isRepaintBoundary] is true, when either the /// Called, in checked mode, if [isRepaintBoundary] is true, when either the
...@@ -2692,7 +2694,7 @@ abstract class RenderObject extends AbstractNode with DiagnosticableTreeMixin im ...@@ -2692,7 +2694,7 @@ abstract class RenderObject extends AbstractNode with DiagnosticableTreeMixin im
/// invisible). /// invisible).
/// ///
/// The default implementation mirrors the behavior of /// The default implementation mirrors the behavior of
/// [visitChildren()] (which is supposed to walk all the children). /// [visitChildren] (which is supposed to walk all the children).
void visitChildrenForSemantics(RenderObjectVisitor visitor) { void visitChildrenForSemantics(RenderObjectVisitor visitor) {
visitChildren(visitor); visitChildren(visitor);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment