@@ -26,14 +26,14 @@ You can customize the default handles or build your own handles using the `corne
2626properties in the ` TransformableBox ` constructor. They both provide access to the ` BuildContext ` and ` HandlePosition `
2727of the appropriate handle.
2828
29- You can use ` handleAlign ` on ` TransformableBox ` to change the position of the handle's interactive area. By default,
29+ You can use ` HandleAlignment ` on ` TransformableBox ` to change the position of the handle's interactive area. By default,
3030the interactive area is aligned to the center of box corner/side.
3131
3232``` dart title="Putting handle completely inside the box area"
3333 TransformableBox(
3434 rect: rect,
3535 flip: flip,
36- handleAlign: HandleAlign .inside,
36+ handleAlignment: HandleAlignment .inside,
3737 onChanged: (event) {...},
3838 contentBuilder: (context, rect, flip) {...},
3939 );
@@ -121,7 +121,7 @@ You can use `AngularHandle` to build angular handles that look like corner brack
121121 TransformableBox(
122122 rect: rect,
123123 flip: flip,
124- handleAlign: HandleAlign .inside,
124+ handleAlignment: HandleAlignment .inside,
125125 cornerHandleBuilder: (context, handle) {
126126 return AngularCornerHandle(
127127 handle: handle,
@@ -131,14 +131,14 @@ You can use `AngularHandle` to build angular handles that look like corner brack
131131 sideHandleBuilder: (context, handle) {
132132 return AngularSideHandle(
133133 handle: handle,
134- handleAlign: HandleAlign .inside,
134+ handleAlignment: HandleAlignment .inside,
135135 );
136136 },
137137 onChanged: (event) {...},
138138 contentBuilder: (context, rect, flip) {...},
139139 );
140140```
141141
142- Use ` handleAlign ` to align ` AngularHandle ` to the inside, outside or in the center of the box.
142+ Use ` handleAlignment ` to align ` AngularHandle ` to the inside, outside or in the center of the box.
143143
144144<Image alt = " Angular Handle Alignements" src = " assets/angular_handle_alignments.png" />
0 commit comments