How can I select multiple images from gallery using rememberLauncherForActivityResult()
in Jetpack Compose? It's onResult
callback returns only one Uri
I'm using Compose on a project where users can upload multiple files at the same time. But I can't seem to find anything about it on the internet.
There was intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true)
to be used with startActivityForResult()
. Does it have something equivalent in Jetpack Compose?