How can I open gmail when click the button in jetpack compose?
I have simple button in android jetpack compose, when I click the button, I want to open gmail and send mail to "android@gmail.com", is it possible?
@Composable
fun SimpleButton() {
Button(onClick = {
//your onclick code here
}) {
Text(text = "Simple Button")
}
}