commit a204b1e26b2967ca4f94df14fa477cfbaf24f83f parent 0401761f6187879e37abb0457de52d3f060b0769 Author: Marc Stibane <marc@taler.net> Date: Tue, 6 May 2025 12:24:13 +0000 Send money icon Diffstat:
3 files changed, 16 insertions(+), 1 deletion(-)
diff --git a/TalerWallet1/Assets.xcassets/OIM-buttons/SendMoney.imageset/Contents.json b/TalerWallet1/Assets.xcassets/OIM-buttons/SendMoney.imageset/Contents.json @@ -0,0 +1,15 @@ +{ + "images" : [ + { + "filename" : "Send money.png", + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/TalerWallet1/Assets.xcassets/OIM-buttons/SendMoney.imageset/Send money.png b/TalerWallet1/Assets.xcassets/OIM-buttons/SendMoney.imageset/Send money.png Binary files differ. diff --git a/TalerWallet1/Views/OIM/OIMactionButtons.swift b/TalerWallet1/Views/OIM/OIMactionButtons.swift @@ -15,7 +15,7 @@ struct OIMsendButton: View { var body: some View { let imageName = isGoal ? "noun-football-goal-4935574" - : "SendTaler" + : "SendMoney" // "SendTaler" Button(action: action) { Image(imageName) .resizable()