comparison Simoleon/Helpers/LockedCurrencyPicker.swift @ 95:04feeb708833

Minor UI updates
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 03 Aug 2021 15:02:40 +0100
parents c07148805f15
children
comparison
equal deleted inserted replaced
94:507ed393a72c 95:04feeb708833
14 var body: some View { 14 var body: some View {
15 HStack { 15 HStack {
16 Text("Default currency") 16 Text("Default currency")
17 Spacer() 17 Spacer()
18 Text(defaultCurrency.first?.pair ?? "USD/GBP") 18 Text(defaultCurrency.first?.pair ?? "USD/GBP")
19 .foregroundColor(Color(.systemGray)) 19 .foregroundColor(.secondary)
20 20
21 Image(systemName: "lock") 21 Image(systemName: "lock")
22 .foregroundColor(Color(.systemGray)) 22 .foregroundColor(.secondary)
23 } 23 }
24 } 24 }
25 } 25 }
26 26
27 struct LockedCurrencyPicker_Previews: PreviewProvider { 27 struct LockedCurrencyPicker_Previews: PreviewProvider {