searchAndReplaceOffsetAnimation property
Implementation
late final Animation<Offset> searchAndReplaceOffsetAnimation = Tween<Offset>(
begin: const Offset(0, -1.25),
end: Offset.zero,
).animate(
CurvedAnimation(
parent: searchAndReplaceAnimationController,
curve: Curves.linear,
),
);