Interpolated rect from start to end at progress.
start
end
progress
static Rect morphRect(double progress, Rect start, Rect end) { final t = progress.clamp(0.0, 1.0); return Rect.lerp(start, end, t)!; }