Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save ashiqfury/cab0a9b60d3a2977cbdd81714f385750 to your computer and use it in GitHub Desktop.
@Composable
fun NotesListScreen(
navigateToDetail: (entry: NoteDetail) -> Unit = {} // Passing callback from NavDisplay
) {
LazyColumn(
modifier = Modifier.fillMaxSize()
) {
items(100) { index ->
Text(
text = "Note #$index",
modifier = Modifier
...
.clickable {
val entry = NoteDetail(noteId = "$index")
navigateToDetail(entry)
}
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment