Mercurial > public > simoleon
comparison Simoleon/Helpers/LockedCurrencyPicker.swift @ 62:c7b6249ab745
uncomment localized texts
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 27 Jul 2021 18:45:43 +0100 |
parents | c52966834f83 |
children | c07148805f15 |
comparison
equal
deleted
inserted
replaced
61:84ce5e5f0381 | 62:c7b6249ab745 |
---|---|
8 import SwiftUI | 8 import SwiftUI |
9 | 9 |
10 struct LockedCurrencyPicker: View { | 10 struct LockedCurrencyPicker: View { |
11 var body: some View { | 11 var body: some View { |
12 HStack { | 12 HStack { |
13 Text("Default currency", comment: "Label in locked picker") | 13 Text("Default currency") |
14 Spacer() | 14 Spacer() |
15 Text("USD/GBP", comment: "Default currency in locked picker") | 15 Text("USD/GBP") |
16 .foregroundColor(Color(.systemGray)) | 16 .foregroundColor(Color(.systemGray)) |
17 | 17 |
18 Image(systemName: "lock") | 18 Image(systemName: "lock") |
19 .foregroundColor(Color(.systemGray)) | 19 .foregroundColor(Color(.systemGray)) |
20 } | 20 } |