Drop deprecated edge-to-edge theme attributes (#123) (#168)

Reviewed-on: https://codeberg.org/jlmakiola/calendula/pulls/168
This commit is contained in:
Jean-Luc Makiola
2026-08-08 20:26:40 +02:00
parent 007e8ab8f6
commit 342af07e09
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
<resources>
<!-- Dark backdrop needs light status-bar icons; the base theme's `true` is
only right for the light window background. -->
<style name="Theme.Calendula" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:windowBackground">@color/window_background</item>
<item name="android:windowLightStatusBar">false</item>
</style>
</resources>

View File

@@ -5,8 +5,6 @@
Compose theme; this is essentially the launch/backdrop theme. -->
<style name="Theme.Calendula" parent="Theme.AppCompat.DayNight.NoActionBar">
<item name="android:windowBackground">@color/window_background</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:windowLightStatusBar">true</item>
</style>
</resources>