From 36ea668d7fc9070770973b0bc329f4319bf43cab Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 22 Apr 2026 01:20:47 -0500 Subject: feat(v2​.6​.0): refine ​UI, density, and usability MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • add compact/comfortable density modes • implement collapsible sections and sticky summary header • improve visual status indicators and copy actions • refine watchlist and history UX with swipe actions • reorganize settings and improve empty states • add subtle animations and accessibility improvements --- DomainDig/DomainDigApp.swift | 3 +++ 1 file changed, 3 insertions(+) (limited to 'DomainDig/DomainDigApp.swift') diff --git a/DomainDig/DomainDigApp.swift b/DomainDig/DomainDigApp.swift index a34eb12..29e0117 100644 --- a/DomainDig/DomainDigApp.swift +++ b/DomainDig/DomainDigApp.swift @@ -9,6 +9,8 @@ import SwiftUI @main struct DomainDigApp: App { + @AppStorage(AppDensity.userDefaultsKey) private var density = AppDensity.compact.rawValue + init() { LocalNotificationService.shared.configureForegroundPresentation() } @@ -16,6 +18,7 @@ struct DomainDigApp: App { var body: some Scene { WindowGroup { ContentView() + .environment(\.appDensity, AppDensity(rawValue: density) ?? .compact) } } } -- cgit v1.2.3