Created
January 27, 2022 15:04
-
-
Save MyricSeptember/dd515567dd8f2eccf9d0cb778848a626 to your computer and use it in GitHub Desktop.
Shows the dummy data from the detail screen
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
Column( | |
horizontalAlignment = Alignment.CenterHorizontally, | |
verticalArrangement = Arrangement.Center | |
) { | |
Text( | |
text = "Enter Movie title", | |
fontSize = 30.sp, | |
fontWeight = FontWeight.Bold | |
) | |
Spacer(modifier = Modifier.height(10.dp)) | |
Text(text = "Population", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Population here") | |
Spacer(modifier = Modifier.height(6.dp)) | |
Text(text = "Largest City", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Largest City here") | |
Spacer(modifier = Modifier.height(6.dp)) | |
Text(text = "Capital City", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Capital City here") | |
Spacer(modifier = Modifier.height(6.dp)) | |
Text(text = "Major Language", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Major Language here") | |
Spacer(modifier = Modifier.height(6.dp)) | |
Text(text = "Major Religion", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Major Religion here") | |
Spacer(modifier = Modifier.height(6.dp)) | |
Text(text = "Monetary Unit", fontWeight = FontWeight.Bold) | |
Text(text = "Enter Movie Monetary Unit here") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment