summaryrefslogtreecommitdiff
path: root/android/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'android/app/src/main/res')
-rw-r--r--android/app/src/main/res/values/themes.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/android/app/src/main/res/values/themes.xml b/android/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..ef88823
--- /dev/null
+++ b/android/app/src/main/res/values/themes.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <!-- Transparent window for TaskDetailActivity so the launcher shows behind the bottom sheet -->
+ <style name="Theme.TaskDetail" parent="android:Theme.DeviceDefault.NoActionBar">
+ <item name="android:windowIsTranslucent">true</item>
+ <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:windowIsFloating">false</item>
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:statusBarColor">@android:color/transparent</item>
+ </style>
+</resources>