From ed41907353b602c0ec3bc3d43f2e77de9e573a5f Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Tue, 24 Mar 2026 18:31:48 -0700 Subject: [PATCH] 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) --- .../metacircular/engpad/ui/notebooks/NotebookListScreen.kt | 2 +- .../kotlin/net/metacircular/engpad/ui/pages/PageListScreen.kt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/kotlin/net/metacircular/engpad/ui/notebooks/NotebookListScreen.kt b/app/src/main/kotlin/net/metacircular/engpad/ui/notebooks/NotebookListScreen.kt index 4053711..e8958c0 100644 --- a/app/src/main/kotlin/net/metacircular/engpad/ui/notebooks/NotebookListScreen.kt +++ b/app/src/main/kotlin/net/metacircular/engpad/ui/notebooks/NotebookListScreen.kt @@ -59,7 +59,7 @@ fun NotebookListScreen( Scaffold( topBar = { - TopAppBar(title = { Text("eng-pad") }) + TopAppBar(title = { Text("Engineering Pad :: Library") }) }, floatingActionButton = { FloatingActionButton(onClick = { showCreateDialog = true }) { diff --git a/app/src/main/kotlin/net/metacircular/engpad/ui/pages/PageListScreen.kt b/app/src/main/kotlin/net/metacircular/engpad/ui/pages/PageListScreen.kt index 96a902e..1cb824c 100644 --- a/app/src/main/kotlin/net/metacircular/engpad/ui/pages/PageListScreen.kt +++ b/app/src/main/kotlin/net/metacircular/engpad/ui/pages/PageListScreen.kt @@ -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) } }, )