Skip to content

Instantly share code, notes, and snippets.

@Simba-97
Created March 4, 2023 12:03
Show Gist options
  • Save Simba-97/f572f94d69db603b2995cb285800518a to your computer and use it in GitHub Desktop.
Save Simba-97/f572f94d69db603b2995cb285800518a to your computer and use it in GitHub Desktop.
@Composable
fun HomeScreen() {
Box(
modifier = Modifier
.fillMaxSize()
.background(Color.Magenta),
contentAlignment = Alignment.Center
) {
Text(
text = "HOME SCREEN",
fontSize = MaterialTheme.typography.h3.fontSize,
fontWeight = FontWeight.Bold,
color = Color.White,
textAlign = TextAlign.Center
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment