lottie github code example
Example 1: lottie dependency android
def lottieVersion = "3.4.0"
implementation "com.airbnb.android:lottie:$lottieVersion"
Example 2: lottie animation github
dependencies {
implementation 'com.airbnb.android:lottie:$lottieVersion'
}
Example 3: github lottie
lottie.loadAnimation({
container: element, // the dom element that will contain the animation
renderer: 'svg',
loop: true,
autoplay: true,
path: 'data.json' // the path to the animation json
});