From 0e461a382257979037e8927e5f6b468635b0a7fe Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Mon, 13 Apr 2026 09:57:23 -0500 Subject: feat: add power user actions Implements: https://todo.sr.ht/~ccleberg/hutch/52 Implements: https://todo.sr.ht/~ccleberg/hutch/53 Implements: https://todo.sr.ht/~ccleberg/hutch/54 --- Hutch/App/RootView.swift | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Hutch/App/RootView.swift') diff --git a/Hutch/App/RootView.swift b/Hutch/App/RootView.swift index e3baa76..f65bced 100644 --- a/Hutch/App/RootView.swift +++ b/Hutch/App/RootView.swift @@ -123,6 +123,13 @@ struct RootView: View { get: { appState.selectedTab }, set: { appState.selectedTab = $0 } ))) + .safeAreaInset(edge: .bottom) { + if let message = appState.copyConfirmationMessage { + CopyConfirmationBadge(message: message) + .padding(.bottom, 4) + .transition(.move(edge: .bottom).combined(with: .opacity)) + } + } .overlay { if isResolvingDeepLink { ZStack { -- cgit v1.2.3