1 // Copyright 2013 The Flutter Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 package io.flutter.embedding.android; 6 7 import android.support.annotation.Nullable; 8 9 /** 10 * Provides a {@link SplashScreen} to display while Flutter initializes and renders its first 11 * frame. 12 */ 13 public interface SplashScreenProvider { 14 /** 15 * Provides a {@link SplashScreen} to display while Flutter initializes and renders its first 16 * frame. 17 */ 18 @Nullable provideSplashScreen()19 SplashScreen provideSplashScreen(); 20 } 21