Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
api/ | H | 25-Apr-2025 | - | 27 | 22 | |
src/main/ | H | 25-Apr-2025 | - | 504 | 343 | |
README.md | H A D | 25-Apr-2025 | 1.2 KiB | 31 | 20 | |
build.gradle.kts | H A D | 25-Apr-2025 | 3.4 KiB | 125 | 81 | |
gradle.properties | H A D | 25-Apr-2025 | 706 | 20 | 18 |
README.md
1# Core Theme Adapter 2 3[](https://search.maven.org/search?q=g:com.google.accompanist) 4 5Core Theme Adapter includes common utilities that enable the reuse of XML themes, for theming in [Jetpack Compose][compose]. 6 7## Usage 8 9This library includes common utilities that enable the reuse of XML themes, for theming in [Jetpack Compose][compose], 10allowing composables like [`MaterialTheme`][materialtheme] to be based on the `Activity`'s XML theme. 11 12For more information, visit the documentation: https://google.github.io/accompanist/themeadapter-core 13 14## Download 15 16```groovy 17repositories { 18 mavenCentral() 19} 20 21dependencies { 22 implementation "com.google.accompanist:accompanist-themeadapter-core:<version>" 23} 24``` 25 26Snapshots of the development version are available in Sonatype's `snapshots` [repository][snap]. These are updated on every commit. 27 28[compose]: https://developer.android.com/jetpack/compose 29[materialtheme]: https://developer.android.com/reference/kotlin/androidx/compose/material3/package-summary#materialtheme 30[snap]: https://oss.sonatype.org/content/repositories/snapshots/com/google/accompanist/accompanist-themeadapter-core/ 31