Add compose reorder library
This commit is contained in:
parent
67a0a64648
commit
9243f85735
@ -238,5 +238,12 @@ val OpenSourceLicenses = arrayOf(
|
|||||||
licenseName = R.string.apache_license_name,
|
licenseName = R.string.apache_license_name,
|
||||||
licenseText = R.raw.license_apache_2,
|
licenseText = R.raw.license_apache_2,
|
||||||
url = "https://bigbadaboom.github.io/androidsvg/"
|
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"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@ -382,6 +382,10 @@ dependencyResolutionManagement {
|
|||||||
alias("lottie")
|
alias("lottie")
|
||||||
.to("com.airbnb.android", "lottie-compose")
|
.to("com.airbnb.android", "lottie-compose")
|
||||||
.version("5.2.0")
|
.version("5.2.0")
|
||||||
|
|
||||||
|
alias("composereorderable")
|
||||||
|
.to("org.burnoutcrew.composereorderable", "reorderable")
|
||||||
|
.version("0.9.2")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -112,6 +112,7 @@ dependencies {
|
|||||||
implementation(libs.coil.compose)
|
implementation(libs.coil.compose)
|
||||||
|
|
||||||
implementation(libs.lottie)
|
implementation(libs.lottie)
|
||||||
|
implementation(libs.composereorderable)
|
||||||
|
|
||||||
implementation(project(":material-color-utilities"))
|
implementation(project(":material-color-utilities"))
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user