Raccoon/core/commonui/modals/build.gradle.kts
Dieguitux aa060a61b2
feat: implement user tags • part 2 (#197)
* update l10n

* move color components to common module

* create new UI components

* update persistence layer

- add color property
- add missing getter
- fix test accordingly

* add tag list screen

* add tag detail screen

* update build scripts and DI configuration

* add possibility to open tag management from profile side menu

* add possibility to edit tag membership in user detail
2024-12-30 08:37:07 +01:00

29 lines
989 B
Plaintext

plugins {
id("com.livefast.eattrash.kotlinMultiplatform")
id("com.livefast.eattrash.composeMultiplatform")
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.compose.colorpicker)
implementation(libs.voyager.navigator)
implementation(libs.voyager.bottomsheet)
implementation(projects.core.appearance)
implementation(projects.core.commonui.components)
implementation(projects.core.commonui.lemmyui)
implementation(projects.core.l10n)
implementation(projects.core.navigation)
implementation(projects.core.notifications)
implementation(projects.core.persistence)
implementation(projects.core.resources)
implementation(projects.core.utils)
implementation(projects.domain.lemmy.data)
}
}
}
}