diff options
Diffstat (limited to 'android/app/src/main/res/values')
| -rw-r--r-- | android/app/src/main/res/values/colors.xml | 5 | ||||
| -rw-r--r-- | android/app/src/main/res/values/strings.xml | 3 | ||||
| -rw-r--r-- | android/app/src/main/res/values/styles.xml | 16 |
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> |
