diff options
| author | Maksymilian Jopek <maks@jopek.eu> | 2021-12-09 23:15:33 +0100 |
|---|---|---|
| committer | Maksymilian Jopek <maks@jopek.eu> | 2021-12-09 23:15:33 +0100 |
| commit | 67b6f338cfe4da739d39dc6764d11efa00105d81 (patch) | |
| tree | 441ff30a8fb783e400ea7c9e600c889e12392eca /android/app/src/main/res/values/styles.xml | |
| download | remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.gz remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.tar.zst remarques-67b6f338cfe4da739d39dc6764d11efa00105d81.zip | |
Created a new Expo app
Diffstat (limited to 'android/app/src/main/res/values/styles.xml')
| -rw-r--r-- | android/app/src/main/res/values/styles.xml | 16 |
1 files changed, 16 insertions, 0 deletions
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> |
