Add compose reorder library

This commit is contained in:
MM20 2022-09-15 17:25:26 +02:00
parent 67a0a64648
commit 9243f85735
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389
3 changed files with 12 additions and 0 deletions

View File

@ -238,5 +238,12 @@ val OpenSourceLicenses = arrayOf(
licenseName = R.string.apache_license_name,
licenseText = R.raw.license_apache_2,
url = "https://bigbadaboom.github.io/androidsvg/"
),
OpenSourceLibrary(
name = "Compose LazyList/Grid reorder",
description = "A Jetpack Compose (Android + Desktop) modifier enabling reordering by drag and drop in a LazyList and LazyGrid.",
licenseName = R.string.apache_license_name,
licenseText = R.raw.license_apache_2,
url = "https://github.com/aclassen/ComposeReorderable"
)
)

View File

@ -382,6 +382,10 @@ dependencyResolutionManagement {
alias("lottie")
.to("com.airbnb.android", "lottie-compose")
.version("5.2.0")
alias("composereorderable")
.to("org.burnoutcrew.composereorderable", "reorderable")
.version("0.9.2")
}
}
}

View File

@ -112,6 +112,7 @@ dependencies {
implementation(libs.coil.compose)
implementation(libs.lottie)
implementation(libs.composereorderable)
implementation(project(":material-color-utilities"))