Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja committed Apr 5, 2024
1 parent 102d3c0 commit 2d109e4
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ An AndroidX MenuHost & MenuProvider-like API for Jetpack Compose!
## Setup

```kt
dependencies {
val menuproviderVersion = "1.2.1"

// Core provides a generic implementation fit for any design system
implementation("io.github.boswelja.menuprovider:core:$menuproviderVersion")

// material3 contains opinionated components to streamline development
implementation("io.github.boswelja.menuprovider:material3:$menuproviderVersion")
kotlin {
sourceSets {
commonMain.dependencies {
val menuproviderVersion = "1.2.1"

// Core provides a generic implementation fit for any design system
implementation("io.github.boswelja.menuprovider:core:$menuproviderVersion")

// material3 contains opinionated components to streamline development
implementation("io.github.boswelja.menuprovider:material3:$menuproviderVersion")
}
}
}
```

Expand Down

0 comments on commit 2d109e4

Please sign in to comment.