@@ -1092,6 +1092,7 @@ class PhysicalShape extends SingleChildRenderObjectWidget {
10921092/// that is relative to the child's size.
10931093/// * [FittedBox] , which sizes and positions its child widget to fit the parent
10941094/// according to a given [BoxFit] discipline.
1095+ /// * The [catalog of layout widgets] (https://flutter.dev/widgets/layout/).
10951096class Transform extends SingleChildRenderObjectWidget {
10961097 /// Creates a widget that transforms its child.
10971098 ///
@@ -1887,6 +1888,7 @@ class Center extends Align {
18871888/// size and positions the child according to an [Alignment] value.
18881889/// * [CustomMultiChildLayout] , which uses a delegate to position multiple
18891890/// children.
1891+ /// * The [catalog of layout widgets] (https://flutter.dev/widgets/layout/).
18901892class CustomSingleChildLayout extends SingleChildRenderObjectWidget {
18911893 /// Creates a custom single child layout.
18921894 ///
@@ -1982,6 +1984,7 @@ class LayoutId extends ParentDataWidget<MultiChildLayoutParentData> {
19821984/// * [Stack] , which arranges children relative to the edges of the container.
19831985/// * [Flow] , which provides paint-time control of its children using transform
19841986/// matrices.
1987+ /// * The [catalog of layout widgets] (https://flutter.dev/widgets/layout/).
19851988class CustomMultiChildLayout extends MultiChildRenderObjectWidget {
19861989 /// Creates a custom multi-child layout.
19871990 ///
@@ -3038,6 +3041,7 @@ AxisDirection getAxisDirectionFromAxisReverseAndDirectionality(
30383041/// this layout algorithm (at the cost of being slightly less efficient).
30393042/// * [ListView] , which implements an efficient scrolling version of this
30403043/// layout algorithm.
3044+ /// * The [catalog of layout widgets] (https://flutter.dev/widgets/layout/).
30413045class ListBody extends MultiChildRenderObjectWidget {
30423046 /// Creates a layout widget that arranges its children sequentially along a
30433047 /// given axis.
0 commit comments