Package-level declarations

Types

Link copied to clipboard
data class Contact(val id: UUID = UUID.randomUUID(), val name: PersonNameComponents, val image: ImageResource = ImageResource.Vector(Icons.Default.AccountBox, StringResource(R.string.profile_picture)), val title: StringResource? = null, val description: StringResource? = null, val organization: StringResource? = null, val address: Address? = null, val options: List<ContactOption>)

Contact data class used to represent a contact.

Link copied to clipboard
data class ContactOption(val id: UUID = UUID(), val image: ImageVector?, val title: StringResource, val action: (Context) -> Unit)

ContactOption data class used to represent a contact option.

Functions

Link copied to clipboard
Link copied to clipboard
fun ContactOption.Companion.email(addresses: List<String>, subject: String? = null): ContactOption
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard