• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.airbnb.lottie;
2 
3 import androidx.annotation.Nullable;
4 
5 /**
6  * @see LottieCompositionFactory
7  * @see LottieResult
8  */
9 @Deprecated
10 public interface OnCompositionLoadedListener {
11   /**
12    * Composition will be null if there was an error loading it. Check logcat for more details.
13    */
onCompositionLoaded(@ullable LottieComposition composition)14   void onCompositionLoaded(@Nullable LottieComposition composition);
15 }
16