Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 271 Bytes

decrease-lottie-size-dynamically.md

File metadata and controls

13 lines (11 loc) · 271 Bytes

Decrease lottie size dynamically in flutter

Posted on 08 Jan, 2022

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