Move Library button to right side, rename notebook list title

- Page list: Library button moved to actions (right side) with titleLarge
- Notebook list: title changed to "Engineering Pad :: Library"

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-24 18:31:48 -07:00
parent 5276bda3de
commit ed41907353
2 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ fun NotebookListScreen(
Scaffold(
topBar = {
TopAppBar(title = { Text("eng-pad") })
TopAppBar(title = { Text("Engineering Pad :: Library") })
},
floatingActionButton = {
FloatingActionButton(onClick = { showCreateDialog = true }) {

View File

@@ -102,9 +102,9 @@ fun PageListScreen(
topBar = {
TopAppBar(
title = { Text(notebookTitle) },
navigationIcon = {
actions = {
androidx.compose.material3.TextButton(onClick = onClose) {
Text("Library")
Text("Library", style = MaterialTheme.typography.titleLarge)
}
},
)