Skip to content

Instantly share code, notes, and snippets.

@ASteinheiser
Last active October 9, 2018 19:13
Show Gist options
  • Save ASteinheiser/745d6937e4296ef0328a32613187b9d2 to your computer and use it in GitHub Desktop.
Save ASteinheiser/745d6937e4296ef0328a32613187b9d2 to your computer and use it in GitHub Desktop.
this is the `launch_screen.xml` file for `react-native-splash-screen`
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white">
<ImageView
android:src="@drawable/launch_screen"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:adjustViewBounds="true"
android:maxHeight="150dp"
android:maxWidth="150dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitCenter">
</ImageView>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment