diff options
Diffstat (limited to 'Hutch/Views/Home/HomeView.swift')
| -rw-r--r-- | Hutch/Views/Home/HomeView.swift | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Hutch/Views/Home/HomeView.swift b/Hutch/Views/Home/HomeView.swift index da58587..42a6737 100644 --- a/Hutch/Views/Home/HomeView.swift +++ b/Hutch/Views/Home/HomeView.swift @@ -795,7 +795,15 @@ private struct HomeAttentionLinkRow<Destination: View>: View { .padding(.horizontal, 8) .padding(.vertical, 4) .background(Color(.secondarySystemFill), in: Capsule()) + + if action != nil { + Image(systemName: "chevron.right") + .font(.caption.weight(.semibold)) + .foregroundStyle(.tertiary) + } } + .frame(maxWidth: .infinity, alignment: .leading) + .contentShape(Rectangle()) .padding(.vertical, 2) } } |
