From 063934215430352fd6b7772149c4b3ca71a1703c Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Tue, 1 Nov 2022 09:18:01 -0700 Subject: [PATCH] use chevron on font changer row for now --- .../Views/FontSizeAdjustmentPopoverView.swift | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift index 564e60611..6282c8c1a 100644 --- a/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift +++ b/apple/OmnivoreKit/Sources/Views/FontSizeAdjustmentPopoverView.swift @@ -142,14 +142,16 @@ public enum WebFont: String, CaseIterable { } ) - HStack { - NavigationLink(destination: fontList) { + NavigationLink(destination: fontList) { + HStack { Text("Font") + Spacer() + Image(systemName: "chevron.right") +// Button(action: {}, label: { Text("Crimson Text").frame(width: 91) }) +// .buttonStyle(RoundedRectButtonStyle()) } - Spacer() - Button(action: {}, label: { Text("Crimson Text").frame(width: 91) }) - .buttonStyle(RoundedRectButtonStyle()) } + .foregroundColor(.appGrayTextContrast) .frame(height: 40) Toggle("High Contrast Text:", isOn: $prefersHighContrastText)