aboutsummaryrefslogtreecommitdiff
path: root/android/app/src/main/res/drawable/launch_background.xml
diff options
context:
space:
mode:
authordavidpkj <davidpenkow1@gmail.com>2022-07-17 19:25:26 +0200
committerdavidpkj <davidpenkow1@gmail.com>2022-07-17 19:25:26 +0200
commitd282f4bb380ce9c445d6bd3a4c9f001bb6b5f501 (patch)
tree023428b7fa249b66a34d0d83c2f0df0ea572ba75 /android/app/src/main/res/drawable/launch_background.xml
Initial Commit
Diffstat (limited to 'android/app/src/main/res/drawable/launch_background.xml')
-rw-r--r--android/app/src/main/res/drawable/launch_background.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml
new file mode 100644
index 0000000..07f7a98
--- /dev/null
+++ b/android/app/src/main/res/drawable/launch_background.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Modify this file to customize your launch splash screen -->
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <!-- <item android:drawable="@android:color/holo_green_dark" /> -->
+ <item android:drawable="@color/primaryColor" />
+
+ <!-- You can insert your own image assets here -->
+ <item android:width="250dp"
+ android:height="250dp"
+ android:gravity="center">
+ <bitmap
+ android:gravity="fill_horizontal|fill_vertical"
+ android:src="@drawable/launcher_icon" />
+ </item>
+</layer-list>