Created
December 26, 2023 07:41
-
-
Save erdalkaymak/00eebbdeadb2a194769a359e8dc726f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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