0.2.0 - MainViewModel and DataStore Handling implementation

This commit is contained in:
Acclorite 2023-12-31 17:57:49 +02:00
parent 29a75aa18a
commit 17fa0973b8
149 changed files with 1385 additions and 373 deletions

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="app_icon_background">#FFFFFF</color>
</resources>

View file

@ -1,10 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="splash_bg_light">#FAFAFA</color>
<color name="splash_bg_dark">#101010</color>
</resources>

View file

@ -1,7 +1,12 @@
<resources>
<!-- Basic Strings -->
<string name="app_version" translatable="false">0.0.1</string>
<string name="app_name">Book\'s History: Resurrection</string>
<string name="app_version" translatable="false">0.2.0</string>
<string-array name="locales">
<item>en</item>
<item>uk</item>
</string-array>
<string name="app_name">Book\'s History</string>
</resources>

View file

@ -1,5 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="Theme.BooksHistoryResurrection" parent="android:Theme.Material.Light.NoActionBar" />
<style name="Theme.BooksHistoryResurrection" parent="android:Theme.Material.Light.NoActionBar">
<item name="android:forceDarkAllowed" tools:ignore="NewApi">false</item>
</style>
<style name="Theme.Start.Splash" parent="Theme.SplashScreen">
<item name="android:forceDarkAllowed" tools:ignore="NewApi">false</item>
<item name="postSplashScreenTheme">@style/Theme.BooksHistoryResurrection</item>
<item name="windowSplashScreenBackground">@color/splash_bg_light</item>
<item name="windowSplashScreenAnimatedIcon">@drawable/splash_icon</item>
</style>
</resources>