From bb7e5fec08481cb6498a534f4da58fd00b5edc58 Mon Sep 17 00:00:00 2001 From: "Shams Zakhour (ignore Sfshaza)" Date: Tue, 7 Oct 2025 15:30:54 -0700 Subject: [PATCH] Further clarifying tween definition --- src/content/ui/animations/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/ui/animations/tutorial.md b/src/content/ui/animations/tutorial.md index a301730a01..cd68e05168 100644 --- a/src/content/ui/animations/tutorial.md +++ b/src/content/ui/animations/tutorial.md @@ -653,8 +653,8 @@ class _LogoAppState extends State with SingleTickerProviderStateMixin { but doesn't know anything about what appears onscreen. * 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 being animated. +* A [`Tween`][] interpolates between a beginning and ending value + for a property being animated. ## Next steps