Skip to content

Instantly share code, notes, and snippets.

@oshamahue
Created August 29, 2020 12:17
Show Gist options
  • Save oshamahue/e56ee8ece20b0bd25574c4b16ca80168 to your computer and use it in GitHub Desktop.
Save oshamahue/e56ee8ece20b0bd25574c4b16ca80168 to your computer and use it in GitHub Desktop.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
ComposePlaygroundTheme {
// A surface container using the 'background' color from the theme
Surface(color = MaterialTheme.colors.background) {
Greeting("Android")
}
}
}
}
}
@Composable
fun Greeting(name: String) {
Text(text = "Hello $name!")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment