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
android { | |
defaultConfig { | |
... | |
minSdkVersion 21 | |
} | |
buildFeatures { | |
// Enables Jetpack Compose for this module | |
compose true | |
} |
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
@Composable | |
fun ContactList() { | |
MyTheme { | |
// Todos os composables deste bloco irão herdar o aspecto visual de MyTheme | |
Text("Hello world") | |
} | |
} | |
@Composable | |
fun MyTheme( |