Skip to content

Instantly share code, notes, and snippets.

@SuvidhaMalaviya
Created February 5, 2023 12:41
Show Gist options
  • Save SuvidhaMalaviya/f0443d322c3ce6030d7e930a9059c7c8 to your computer and use it in GitHub Desktop.
Save SuvidhaMalaviya/f0443d322c3ce6030d7e930a9059c7c8 to your computer and use it in GitHub Desktop.
Android Jetpack Compose
import androidx.compose.Composable
import androidx.ui.core.Text
import androidx.ui.material.Button
@Composable
fun SimpleButton(onClick: () -> Unit) {
Button(text = "Click me", onClick = onClick)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment