fun Context.shareText(message: String) { val intent = Intent(Intent.ACTION_SEND) intent.type = "text/plain" intent.putExtra(Intent.EXTRA_TEXT, message) ContextCompat.startActivity( this, Intent.createChooser( ...
kotlinfan.hashnode.dev1 min read
No responses yet.