aboutsummaryrefslogtreecommitdiffstats
path: root/android/app/src/main/res/values
diff options
context:
space:
mode:
authorMaksymilian Jopek <maks@jopek.eu>2021-12-09 23:15:33 +0100
committerMaksymilian Jopek <maks@jopek.eu>2021-12-09 23:15:33 +0100
commit67b6f338cfe4da739d39dc6764d11efa00105d81 (patch)
tree441ff30a8fb783e400ea7c9e600c889e12392eca /android/app/src/main/res/values
downloadremarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.gz
remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.zst
remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.zip
Created a new Expo app
Diffstat (limited to 'android/app/src/main/res/values')
-rw-r--r--android/app/src/main/res/values/colors.xml5
-rw-r--r--android/app/src/main/res/values/strings.xml3
-rw-r--r--android/app/src/main/res/values/styles.xml16
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..7e2bd59
--- /dev/null
+++ b/android/app/src/main/res/values/colors.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <!-- Below line is handled by '@expo/configure-splash-screen' command and it's discouraged to modify it manually -->
+ <color name="splashscreen_background">#FFFFFF</color>
+</resources>
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..d486bfb
--- /dev/null
+++ b/android/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+<resources>
+ <string name="app_name">10-lesson</string>
+</resources>
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..42d0aa7
--- /dev/null
+++ b/android/app/src/main/res/values/styles.xml
@@ -0,0 +1,16 @@
+<resources>
+ <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
+ <item name="android:textColor">@android:color/black</item>
+ <item name="android:editTextStyle">@style/ResetEditText</item>
+ </style>
+ <style name="ResetEditText" parent="@android:style/Widget.EditText">
+ <item name="android:padding">0dp</item>
+ <item name="android:textColorHint">#c8c8c8</item>
+ <item name="android:textColor">@android:color/black</item>
+ </style>
+ <style name="Theme.App.SplashScreen" parent="Theme.AppCompat.Light.NoActionBar">
+ <!-- Below line is handled by '@expo/configure-splash-screen' command and it's discouraged to modify it manually -->
+ <item name="android:windowBackground">@drawable/splashscreen</item>
+ <!-- Customize your splash screen theme here -->
+ </style>
+</resources>