Files
mobile-app/android/app/src/main/res/drawable/launch_background.xml

22 lines
675 B
XML
Raw Normal View History

2026-01-12 14:12:41 +05:30
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Gradient background from #c4d9d4 (top) to #f0f5fc (bottom) -->
<item android:drawable="@drawable/splash_gradient" />
2026-01-12 14:12:41 +05:30
<!-- House illustration centered -->
<item>
2026-01-12 14:12:41 +05:30
<bitmap
android:gravity="center"
android:src="@drawable/splash_house" />
</item>
<!-- RE-Quest logo below center -->
<item
android:gravity="center_horizontal|bottom"
android:bottom="200dp">
<bitmap
android:gravity="center"
android:src="@drawable/splash_logo" />
</item>
2026-01-12 14:12:41 +05:30
</layer-list>