Rename page list close button from X to Library

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 18:28:44 -07:00
parent 7d7073c3c9
commit 5276bda3de

View File

@@ -103,8 +103,8 @@ fun PageListScreen(
TopAppBar( TopAppBar(
title = { Text(notebookTitle) }, title = { Text(notebookTitle) },
navigationIcon = { navigationIcon = {
androidx.compose.material3.IconButton(onClick = onClose) { androidx.compose.material3.TextButton(onClick = onClose) {
Text("X") Text("Library")
} }
}, },
) )