Intent Extensions

Share
fun Context.share(content: String, title: String? = null) {
    Intent().apply {
        action = Intent.ACTION_SEND
        putExtra(Intent.EXTRA_TEXT, content)
        type = "text/plain"
        title?.let { putExtra(Intent.EXTRA_TITLE, it) }
    }.also {
        startActivity(Intent.createChooser(it, title.orEmpty()))
    }
}