From e0ae9cb95f1904ea943c8a9a01b58537ef0d60f3 Mon Sep 17 00:00:00 2001 From: Yusuf Suleman Date: Sat, 4 Apr 2026 10:11:09 -0500 Subject: [PATCH] fix: inline title (no large title drop) + restore canvas background MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. .navigationBarTitleDisplayMode(.inline) — title stays at top 2. .background(Color.canvas) — restores warm cream background Co-Authored-By: Claude Opus 4.6 (1M context) --- ios/Platform/Platform/Features/Reader/Views/ReaderTabView.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ios/Platform/Platform/Features/Reader/Views/ReaderTabView.swift b/ios/Platform/Platform/Features/Reader/Views/ReaderTabView.swift index a9cc47d..7a40bd5 100644 --- a/ios/Platform/Platform/Features/Reader/Views/ReaderTabView.swift +++ b/ios/Platform/Platform/Features/Reader/Views/ReaderTabView.swift @@ -19,8 +19,10 @@ struct ReaderTabView: View { NavigationStack { // Entry list as the main content — scrolls under the glass nav bar EntryListView(vm: vm, isCardView: isCardView, isAutoScrolling: $isAutoScrolling, scrollSpeed: scrollSpeed) + .background(Color.canvas) .navigationTitle("Reader") .navigationSubtitle(subtitleText) + .navigationBarTitleDisplayMode(.inline) .toolbar { if isAutoScrolling { // Auto-scroll mode: speed controls in toolbar