Last active
October 9, 2018 19:13
-
-
Save ASteinheiser/745d6937e4296ef0328a32613187b9d2 to your computer and use it in GitHub Desktop.
this is the `launch_screen.xml` file for `react-native-splash-screen`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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