@Composable
fun MainScreen() {
val context = LocalContext.current
Button(onClick = {
context.startActivity(Intent(context, ListActivity::class.java))
}) {
Text(text = "Show List")
}
}
Last active
December 31, 2023 12:15
-
-
Save VacantThinker/75aec04fd8dda705325038d5de9a6986 to your computer and use it in GitHub Desktop.