Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/content/ui/animations/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ class _LogoAppState extends State<LogoApp> with SingleTickerProviderStateMixin {
* An [`AnimationController`][] manages the `Animation`.
* A [`CurvedAnimation`][] defines progression as a non-linear curve.
* A [`Tween`][] interpolates between the range of data as used by the
object be
object being animated.
Comment on lines 656 to +657

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While your change fixes the incomplete sentence, the description of Tween could be more precise. A Tween interpolates between a start and end value for a specific property of an object, rather than animating the object as a whole. A more accurate description would clarify this, which aligns with the examples in this tutorial.

Suggested change
* A [`Tween`][] interpolates between the range of data as used by the
object be
object being animated.
* A [`Tween`][] interpolates between a beginning and ending value for a
property being animated.


## Next steps

Expand Down