xvrh / lottie-flutter

Render After Effects animations natively on Flutter. This package is a pure Dart implementation of a Lottie player.
https://pub.dev/packages/lottie
MIT License
1.17k stars 200 forks source link

boxFit cover problems #151

Open daviils opened 3 years ago

daviils commented 3 years ago

I want to set the widget's fit to cover but it ignores height and overflows the size

daviils commented 3 years ago

I managed to solve the problem by putting the lottie inside a clipPath

Container( height: !ResponsiveWrapper.of(context).isSmallerThan(DESKTOP) ? null : 320, child: ClipPath( child: Lottie.asset('assets/climate_bg/${biWeekly.selectedDay!.icon}.json', fit: BoxFit.cover,width: double.infinity), ), ),