MainActivity.kt
class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
ThemeTest1()
}
}
}
@Composable
fun ThemeTest1(){
MyThemeTest1Theme(
// darkTheme = true
) {
Surface(
modifier = Modifier.fillMaxSize(),
color = MaterialTheme.colorScheme.background
) {
Text(
text = "HELLO"
)
}
}
}
@Preview(
showBackground = true,
uiMode = Configuration.UI_MODE_NIGHT_NO,
name = "Light"
)
@Preview(
showBackground = true,
uiMode = Configuration.UI_MODE_NIGHT_YES,
name = "Dark"
)
@Composable
fun TestPreview1() {
ThemeTest1()
}
//@Composable
//fun TestPreview2() {
// ThemeTest1()
//}