22 lines
473 B
Java
22 lines
473 B
Java
|
package io.flutter.embedding.android;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.os.Bundle;
|
||
|
import android.view.View;
|
||
|
|
||
|
@Deprecated
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface SplashScreen {
|
||
|
View createSplashView(Context context, Bundle bundle);
|
||
|
|
||
|
default boolean doesSplashViewRememberItsTransition() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
default Bundle saveSplashScreenState() {
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
void transitionToFlutter(Runnable runnable);
|
||
|
}
|