commit 7289ab69641337fea1004ac3a77d51f853f70386 parent f5f19a8aabcf3de80345b01375f433e569f25850 Author: Marc Stibane <marc@taler.net> Date: Tue, 17 Sep 2024 14:36:07 +0200 Sheet drop bar Diffstat:
| M | TalerWallet1/Views/Actions/ActionsSheet.swift | | | 15 | +++++++++++++++ |
1 file changed, 15 insertions(+), 0 deletions(-)
diff --git a/TalerWallet1/Views/Actions/ActionsSheet.swift b/TalerWallet1/Views/Actions/ActionsSheet.swift @@ -35,6 +35,21 @@ struct ActionsSheet: View { var body: some View { VStack { + HStack(spacing: 0) { + let width = UIScreen.screenWidth / 3 + let height = 4.0 + Rectangle() + .opacity(0.001) + .frame(width: width, height: height) + RoundedRectangle(cornerRadius: 2) + .foregroundColor(.primary) + .frame(width: width, height: height) + Rectangle() + .opacity(0.001) + .frame(width: width, height: height) + } // drop bar + .listRowSeparator(.hidden) + if hasKudos { if !minimalistic && showSpendingHint { Text("You can spend your \(DEMOCURRENCY) in the Demo shop, or send them to another wallet.")