Skip to content

Instantly share code, notes, and snippets.

@MyricSeptember
Created January 27, 2022 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MyricSeptember/dd515567dd8f2eccf9d0cb778848a626 to your computer and use it in GitHub Desktop.
Save MyricSeptember/dd515567dd8f2eccf9d0cb778848a626 to your computer and use it in GitHub Desktop.
Shows the dummy data from the detail screen
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