Created
October 2, 2021 14:52
-
-
Save devDeejay/0fb34f93196ae3753f3cd47bcca0c262 to your computer and use it in GitHub Desktop.
This file contains 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) | |
// This is the block where we will call | |
// our Composable Functions | |
setContent { | |
Text("Hello world!") //<-- Composable Function | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment