I'm using Jetpack Compose and the Photo Picker to allow users to select images in my app. However, I want to restrict the selection to only PNG images. How can I implement this filter when using the Photo Picker in Jetpack Compose?
Here's the code I have for opening the Photo Picker using the button onClick:
val multiplePhotoPickerLauncher = rememberLauncherForActivityResult(
contract = ActivityResultContracts.PickMultipleVisualMedia(),
onResult = { uris -> })
// Below code for open image picker
Button(modifier = Modifier
.fillMaxWidth()
.bounceClick(),
colors = ButtonDefaults.buttonColors(
White, disabledContainerColor = White80,
disabledContentColor = White
),
onClick = {
multiplePhotoPickerLauncher.launch(PickVisualMediaRequest(ActivityResultContracts.PickVisualMedia.ImageOnly)
)
}
) {
Text(
color = Black80,
text = "${attachments.size} / 10"
)
}
You should set the MIME type like this: