react-native-bootsplash
Version:
Display a bootsplash on your app starts. Hide it when you want.
22 lines (19 loc) • 730 B
text/xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" android:opacity="opaque">
<item android:gravity="fill">
<color android:color="?attr/bootSplashBackground" />
</item>
<!-- There's an issue with logo size on Samsung OneUI v4
We need to render it 2 times smaller (288 / 2 = 144) -->
<item
android:drawable="?bootSplashLogo"
android:gravity="center"
android:width="144dp"
android:height="144dp" />
<item
android:drawable="?bootSplashBrand"
android:gravity="bottom|center_horizontal"
android:width="200dp"
android:height="80dp"
android:bottom="60dp" />
</layer-list>