Skip to content

Instantly share code, notes, and snippets.

@catalinghita8
Created September 27, 2020 07:52
Show Gist options
  • Select an option

  • Save catalinghita8/489a666c637148a8af1942ca894ad5c1 to your computer and use it in GitHub Desktop.

Select an option

Save catalinghita8/489a666c637148a8af1942ca894ad5c1 to your computer and use it in GitHub Desktop.
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MyComposeApplication {
// A surface container using the 'background' color from the theme
Surface(color = MaterialTheme.colors.background) {
Greeting("Android")
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment