-
-
Save ashiqfury/2eab7cc859ac999cc00c9961d3b42cc8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| @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