summaryrefslogtreecommitdiff
path: root/TalerWallet1/Views/HelperViews/AmountRowV.swift
diff options
context:
space:
mode:
Diffstat (limited to 'TalerWallet1/Views/HelperViews/AmountRowV.swift')
-rw-r--r--TalerWallet1/Views/HelperViews/AmountRowV.swift8
1 files changed, 4 insertions, 4 deletions
diff --git a/TalerWallet1/Views/HelperViews/AmountRowV.swift b/TalerWallet1/Views/HelperViews/AmountRowV.swift
index b3140e7..59b7c10 100644
--- a/TalerWallet1/Views/HelperViews/AmountRowV.swift
+++ b/TalerWallet1/Views/HelperViews/AmountRowV.swift
@@ -60,24 +60,24 @@ struct SectionWithAmountRow: View {
Section {
AmountRowV(amountStr: demoStr, amountColor: .primary, largeAmountFont: true,
fitsHorizontal: true, vertAlignment: .lastTextBaseline) {
- Text("Balance")
+ Text(verbatim: "Balance")
.accessibilityFont(.title2)
}
AmountRowV(amountStr: demoStr, amountColor: .primary, largeAmountFont: true,
fitsHorizontal: false, vertAlignment: .lastTextBaseline) {
- Text("Balance")
+ Text(verbatim: "Balance")
.accessibilityFont(.title2)
}
}
Section {
AmountRowV(amountStr: testStr, amountColor: .secondary, largeAmountFont: false,
fitsHorizontal: true, vertAlignment: .lastTextBaseline) {
- Text("Balance")
+ Text(verbatim: "Balance")
.accessibilityFont(.title2)
}
AmountRowV(amountStr: testStr, amountColor: .secondary, largeAmountFont: false,
fitsHorizontal: false, vertAlignment: .lastTextBaseline) {
- Text("Balance")
+ Text(verbatim: "Balance")
.accessibilityFont(.title2)
}
}