aclassen / ComposeReorderable

Enables reordering by drag and drop in Jetpack Compose (Desktop) LazyList & LazyGrid.
Apache License 2.0
821 stars 86 forks source link

please support ios #287

Open Felis-nigripes opened 2 months ago

Felis-nigripes commented 2 months ago

compose mulitplatform ios is beta,please support ios, thanks.

Him188 commented 1 week ago

We have a fork here https://github.com/open-ani/ComposeReorderable which added ios targets and upgraded Kotlin and Compose versions to modern ones. You may import it using Gradle Copmosite Builds:

// settings.gradle.kts
includeBuild("app/shared/reorderable") {
    dependencySubstitution {
        substitute(module("org.burnoutcrew.composereorderable:reorderable")).using(project(":reorderable"))
    }
}

app/shared/reorderable points to the fork.