I am building a compose multiplatform app, I am cu...
# multiplatform
m
I am building a compose multiplatform app, I am currently building a custom image picker, I can build out each component natively if I have to, but I was wondering if there is a solution to load images from both platforms in common? Or at least the media files? Akin to mediastore in Android? Any libraries that can do this currently?
a
Jetbrains actually put together a really good sample application that shows a lot of what you're probably looking for: https://github.com/JetBrains/compose-multiplatform/tree/master/examples/imageviewer
👀 1
m
Thanks, this is very helpful for accessing the camera and taking images, but doesn't give me what I need in terms of accessing the device's gallery I don't think. Thank you though, this is still helpful.
a
I think it pulls some images from the devices gallery
b
Calf has image picker; also what I’m using internally for botstacks. https://github.com/MohamedRejeb/Calf
👀 1
m
This looks pretty good. I'll give it a look. Thanks!
132 Views