Decrease lottie size dynamically in flutter

January 18, 2025 ยท View on GitHub

SizedBox(
   height: <height you want for lottie>,
   child: OverflowBox(
    maxHeight: <height greater than you set for lottie>,
    child: Lottie.asset('animation.json'),
  ),
),