Package-level declarations

Functions

Link copied to clipboard
fun ImagesPicker(    images: List<AttachmentPickerItemState>,     onImageSelected: (AttachmentPickerItemState) -> Unit,     modifier: Modifier = Modifier,     itemContent: @Composable (AttachmentPickerItemState) -> Unit = { imageItem -> DefaultImagesPickerItem( imageItem = imageItem, onImageSelected = onImageSelected, ) },     showAddMore: Boolean = false,     onAddMoreClick: () -> Unit = {},     addMoreContent: @Composable () -> Unit = { DefaultAddMoreItem(onAddMoreClick) })

Shows the UI for images the user can pick for message attachments. Exposes the logic of selecting items.