react-native-web-community/react-native-web-lottie

resizeMode='cover' does not work

Closed this issue · 2 comments

Example:

<LottieView resizeMode='cover' ... />

In SVG it's still

preserveAspectRatio="xMidYMid meet"

not

preserveAspectRatio="xMidYMid slice"

Any trick? thanks.

Use rendererSettings props, found it in the source code

Thanks @zhigang1992

rendererSettings={{ preserveAspectRatio: 'xMidYMid slice' }}