From 1354f2464180ece6d13296a543a964ddf6d2d393 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 12 Apr 2026 19:47:57 -0500 Subject: feat: add theme and high-density display modes Refs: https://todo.sr.ht/~ccleberg/hutch/24 Implements: https://todo.sr.ht/~ccleberg/hutch/25 --- Hutch/Views/More/MoreView.swift | 1 + Hutch/Views/More/ProfileView.swift | 1 + 2 files changed, 2 insertions(+) (limited to 'Hutch/Views/More') diff --git a/Hutch/Views/More/MoreView.swift b/Hutch/Views/More/MoreView.swift index 6325954..caec3d5 100644 --- a/Hutch/Views/More/MoreView.swift +++ b/Hutch/Views/More/MoreView.swift @@ -63,6 +63,7 @@ struct MoreView: View { Text("These SourceHut services are not supported in-app, as the SourceHut API does not support them, and will open in your browser.") } } + .themedList() .navigationTitle("More") .refreshable { await ensureViewModel().loadSystemStatus(forceRefresh: true) diff --git a/Hutch/Views/More/ProfileView.swift b/Hutch/Views/More/ProfileView.swift index 53c5ce3..673b298 100644 --- a/Hutch/Views/More/ProfileView.swift +++ b/Hutch/Views/More/ProfileView.swift @@ -87,6 +87,7 @@ struct ProfileView: View { patSection(viewModel) } } + .themedList() .overlay { if viewModel.isLoading, viewModel.profile == nil { SRHTLoadingStateView(message: "Loading profile…") -- cgit v1.2.3