Skip to content

Instantly share code, notes, and snippets.

@erdalkaymak
Created December 26, 2023 07:41
Show Gist options
  • Select an option

  • Save erdalkaymak/00eebbdeadb2a194769a359e8dc726f5 to your computer and use it in GitHub Desktop.

Select an option

Save erdalkaymak/00eebbdeadb2a194769a359e8dc726f5 to your computer and use it in GitHub Desktop.
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
MyApplicationTheme {
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colors.background
) {
GreetingView(Greeting().greet())
}
}
}
}
}
@Composable
fun GreetingView(text: String) {
Text(text = text)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment