I am trying to configure a splash screen in a React native app (android). When I open the app, first app icon (ic_launcher) is displayed with a white background and then, the splash screen is displayed. I am not from a native background so I don't know what is happening. Is this a default behavior on android?
//launch_screen.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center"
android:background="@color/splash_background"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@mipmap/launch_screen"/>
</LinearLayout>