does anyone know any color picker libraries that w...
# multiplatform
a
does anyone know any color picker libraries that work on compose multiplatform? i know of the below two for compose but these unfortunately don’t work on KMM/CMP https://github.com/godaddy/compose-color-picker https://github.com/eygraber/compose-color-picker
e
The second one is mine and it should work for Android, JVM, and js. Are you looking for an iOS target?
a
Hey Eliezer, yes correct looking for ios target
e
I can add that target but I can't really test it or add it to the sample so no guarantees. I'm more than happy to take contributions for the sample, etc... 😁
@Alfie can you give 0.0.15-SNAPSHOT a try and let me know how it goes?
a
@eygraber that version throws this error when syncing, although im not entirely sure if it’s something i may be missing
Could not determine the dependencies of task ':shared:transformAppleMainCInteropDependenciesMetadataForIde'.
> Could not resolve all task dependencies for configuration ':shared:appleMainResolvableDependenciesMetadata'.
> Could not find com.eygraber:compose-color-picker:0.0.15-SNAPSHOT.
Required by:
project :shared
e
You need to add the snapshots repo
Copy code
maven(url = "<https://s01.oss.sonatype.org/content/repositories/snapshots>") {
      mavenContent {
        snapshotsOnly()
      }
}
@Alfie were you able to get this working? If so I can make a full release