mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 21:07:04 +05:30
common: add NetworkImage composable
This commit is contained in:
parent
450d4836c5
commit
a8016391c9
5 changed files with 77 additions and 3 deletions
|
@ -27,13 +27,21 @@ kotlin {
|
|||
api(compose.foundation)
|
||||
api(compose.material)
|
||||
api(projects.database)
|
||||
implementation("com.alialbaali.kamel:kamel-image:0.2.1")
|
||||
}
|
||||
}
|
||||
val commonTest by getting
|
||||
val androidMain by getting { dependencies { implementation(libs.androidx.browser) } }
|
||||
val androidMain by getting {
|
||||
dependencies {
|
||||
implementation(libs.androidx.browser)
|
||||
implementation(libs.coil.compose)
|
||||
}
|
||||
}
|
||||
val androidTest by getting { dependsOn(androidAndroidTestRelease) }
|
||||
val desktopMain by getting
|
||||
val desktopMain by getting {
|
||||
dependencies {
|
||||
implementation(libs.kamel.image)
|
||||
}
|
||||
}
|
||||
val desktopTest by getting
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue