Browse Source

[gradle] Add "compose.material3AdaptiveNavigationSuite" shortcut (#5133)

Add `compose.material3AdaptiveNavigationSuite` shortcut:

```kotlin
kotlin {
    sourceSets {
        commonMain.dependencies {
            implementation(compose.material3AdaptiveNavigationSuite)
        }
    }
}
```

## Release Notes
### Features - Gradle Plugin
- New `compose.material3AdaptiveNavigationSuite` shortcut in the gradle
plugin
pull/5135/head v1.7.0-dev1809
Konstantin 2 months ago committed by GitHub
parent
commit
d2b934a734
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

1
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

@ -72,6 +72,7 @@ abstract class ComposePlugin : Plugin<Project> {
val foundation get() = composeDependency("org.jetbrains.compose.foundation:foundation")
val material get() = composeDependency("org.jetbrains.compose.material:material")
val material3 get() = composeDependency("org.jetbrains.compose.material3:material3")
val material3AdaptiveNavigationSuite get() = composeDependency("org.jetbrains.compose.material3:material3-adaptive-navigation-suite")
val runtime get() = composeDependency("org.jetbrains.compose.runtime:runtime")
val runtimeSaveable get() = composeDependency("org.jetbrains.compose.runtime:runtime-saveable")
val ui get() = composeDependency("org.jetbrains.compose.ui:ui")

Loading…
Cancel
Save