Skip to content

Commit

Permalink
Revert "Update align_widget_modifier.dart"
Browse files Browse the repository at this point in the history
This reverts commit b66af02.
  • Loading branch information
tilucasoli committed Jul 24, 2024
1 parent b66af02 commit dc02711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/mix/lib/src/modifiers/align_widget_modifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ final class AlignModifierSpec extends WidgetModifierSpec<AlignModifierSpec> {
@override
AlignModifierSpec lerp(AlignModifierSpec? other, double t) {
return AlignModifierSpec(
alignment: AlignmentGeometry.lerp(alignment, other?.alignment, t),
widthFactor: lerpDouble(widthFactor, other?.widthFactor, t),
heightFactor: lerpDouble(heightFactor, other?.heightFactor, t),
alignment: AlignmentGeometry.lerp(alignment, other?.alignment, t),
);
}

Expand Down

0 comments on commit dc02711

Please sign in to comment.