All checks were successful
continuous-integration/drone/push Build is passing
- Created comprehensive Android app requirements document - Built complete Android project with Kotlin and Jetpack Compose - Implemented task management with control and display screens - Added Android widget with 5-minute auto-refresh capability - Integrated Room database for offline support - Set up MVVM architecture with Hilt dependency injection - Configured Retrofit for API communication - Added Material Design 3 theming and UI components
17 lines
851 B
XML
17 lines
851 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
<!-- Base application theme. -->
|
|
<style name="Theme.CalendarWidget" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
|
|
<!-- Primary brand color. -->
|
|
<item name="colorPrimary">@color/primary</item>
|
|
<item name="colorPrimaryVariant">@color/secondary</item>
|
|
<item name="colorOnPrimary">@color/white</item>
|
|
<!-- Secondary brand color. -->
|
|
<item name="colorSecondary">@color/teal_200</item>
|
|
<item name="colorSecondaryVariant">@color/teal_700</item>
|
|
<item name="colorOnSecondary">@color/black</item>
|
|
<!-- Status bar color. -->
|
|
<item name="android:statusBarColor">?attr/colorPrimaryVariant</item>
|
|
<!-- Customize your theme here. -->
|
|
</style>
|
|
</resources> |