Skip to content

Instantly share code, notes, and snippets.

@ashiqfury
Last active June 20, 2025 12:10
Show Gist options
  • Select an option

  • Save ashiqfury/2eab7cc859ac999cc00c9961d3b42cc8 to your computer and use it in GitHub Desktop.

Select an option

Save ashiqfury/2eab7cc859ac999cc00c9961d3b42cc8 to your computer and use it in GitHub Desktop.
@Composable
fun NoteDetailScreen(note: NoteDetail) {
Box(
modifier = Modifier
.fillMaxSize(),
contentAlignment = Alignment.Center
) {
Text("Note Id: ${note.noteId}")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment