Add jitpack.io to your settings.gradle.kts:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") } // Add This
}
}Add the library in your dependencies:
dependencies {
implementation("com.github.Mono-Code-Scheme:compose-material:1.1.0")
}Get the material theme:
val theme = getMaterialMonoCode(ThemeId.PantherYellow)You can use other colors like PantherBlue, LynxOrange
🐈⬛ lighttigerXIV

