Skip to content

Commit

Permalink
[gradle] Add "compose.material3AdaptiveNavigationSuite" shortcut (#5133)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
terrakok committed Sep 9, 2024
1 parent e3a78f3 commit d2b934a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit d2b934a

Please sign in to comment.