summaryrefslogtreecommitdiff
path: root/android/app/src/main/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src/main/res/values')
-rw-r--r--android/app/src/main/res/values/colors.xml6
-rw-r--r--android/app/src/main/res/values/strings.xml6
-rw-r--r--android/app/src/main/res/values/styles.xml12
3 files changed, 24 insertions, 0 deletions
diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..f387b90
--- /dev/null
+++ b/android/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+<resources>
+ <color name="splashscreen_background">#ffffff</color>
+ <color name="iconBackground">#ffffff</color>
+ <color name="colorPrimary">#023c69</color>
+ <color name="colorPrimaryDark">#ffffff</color>
+</resources> \ No newline at end of file
diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..4c6974b
--- /dev/null
+++ b/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,6 @@
+<resources>
+ <string name="app_name">client</string>
+ <string name="expo_system_ui_user_interface_style" translatable="false">automatic</string>
+ <string name="expo_splash_screen_resize_mode" translatable="false">contain</string>
+ <string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
+</resources> \ No newline at end of file
diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..4ef1d97
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,12 @@
+<resources xmlns:tools="http://schemas.android.com/tools">
+ <style name="AppTheme" parent="Theme.EdgeToEdge">
+ <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
+ <item name="colorPrimary">@color/colorPrimary</item>
+ <item name="android:statusBarColor">#ffffff</item>
+ </style>
+ <style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
+ <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
+ <item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item>
+ <item name="postSplashScreenTheme">@style/AppTheme</item>
+ </style>
+</resources> \ No newline at end of file