Skip to content

Commit f314543

Browse files
committed
oops
1 parent b2d1d73 commit f314543

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

boxy/lib/src/boxy/box_child.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class BoxyChild extends BaseBoxyChild {
107107
}
108108

109109
/// Like [layout] but does not return the child's size, this is usually more
110-
/// efficient because the boxy doesn't need to be layed out when the child's
110+
/// efficient because the boxy doesn't need to be laid out when the child's
111111
/// size changes.
112112
///
113113
/// If [useSize] is true, this boxy will re-layout when the child changes

boxy/lib/src/boxy/custom_boxy_base.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ class BaseBoxyChild extends InflatedChildHandle {
827827
/// Sets whether or not this child should be ignored by [paint] and
828828
/// [BoxyChild.hitTest].
829829
///
830-
/// The child still needs to be layed out while ignored.
830+
/// The child still needs to be laid out while ignored.
831831
void ignore([bool value = true]) {
832832
_ignore = value;
833833
}

boxy/lib/src/boxy/inflating_element.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ mixin InflatingRenderObjectMixin<
176176
/// We use a queue instead of wrapping [performInflatingLayout] in a single
177177
/// [BuildOwner.buildScope] because it cannot be called reentrantly, not doing
178178
/// layout inside of a scope is important because a descendant [Viewport],
179-
/// [CustomBoxy], [LayoutBuilder], etc. will also call it when being layed out.
179+
/// [CustomBoxy], [LayoutBuilder], etc. will also call it when being laid out.
180180
///
181181
/// Should only be called during layout inside [performInflatingLayout].
182182
void flushInflateQueue() {

boxy/lib/src/boxy_flex.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ enum BoxyFlexIntrinsicsBehavior {
3131
/// [CrossAxisAlignment.stretch] instead of [CrossAxisAlignment.center].
3232
///
3333
/// During layout this widget searches for a [Dominant] child, if found the
34-
/// dominant child is layed out first and defines the maximum cross-axis of
34+
/// dominant child is laid out first and defines the maximum cross-axis of
3535
/// every non-dominant child in the flex.
3636
///
3737
/// See also:
@@ -244,7 +244,7 @@ class BoxyFlex extends MultiChildRenderObjectWidget {
244244
/// [CrossAxisAlignment.stretch] instead of [CrossAxisAlignment.center].
245245
///
246246
/// During layout this widget searches for a [Dominant] child, if found the
247-
/// dominant child is layed out first and defines the maximum cross-axis of
247+
/// dominant child is laid out first and defines the maximum cross-axis of
248248
/// every non-dominant child in the row.
249249
///
250250
/// Children can override their cross-axis alignment using [BoxyFlexible.align].
@@ -299,7 +299,7 @@ class BoxyRow extends BoxyFlex {
299299
/// [CrossAxisAlignment.stretch] instead of [CrossAxisAlignment.center].
300300
///
301301
/// During layout this widget searches for a [Dominant] child, if found the
302-
/// dominant child is layed out first and defines the maximum cross-axis of
302+
/// dominant child is laid out first and defines the maximum cross-axis of
303303
/// every non-dominant child in the flex.
304304
///
305305
/// Children can override their cross-axis alignment using [BoxyFlexible.align].

boxy/lib/src/sliver_container.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ class SliverContainer extends StatelessWidget {
3333
/// The child sliver that this container will wrap.
3434
final Widget? sliver;
3535

36-
/// The child box widget that is layed out so that it covers the visual space
36+
/// The child box widget that is laid out so that it covers the visual space
3737
/// of [sliver], and painted above it.
3838
final Widget? foreground;
3939

40-
/// The child box widget that is layed out so that it covers the visual space
40+
/// The child box widget that is laid out so that it covers the visual space
4141
/// of [sliver], and painted below it.
4242
final Widget? background;
4343

0 commit comments

Comments
 (0)