summaryrefslogtreecommitdiff
path: root/android/app/src/main/res/values/themes.xml
blob: 0a3e5d374422645d6c024f418edc4023678088b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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>

    <!-- DashboardActivity draws its own Compose TopAppBar; without this, the
         app-wide DayNight theme's native ActionBar renders as a second bar
         above it. -->
    <style name="Theme.Dashboard" parent="android:Theme.DeviceDefault.NoActionBar" />
</resources>