Mercurial > public > simoleon
comparison Simoleon/Helpers/LockedCurrencyPicker.swift @ 28:4f862c618b44
Implemented RevenueCat
author | Dennis Concepción Martín <dennisconcepcionmartin@gmail.com> |
---|---|
date | Thu, 22 Jul 2021 19:06:01 +0100 |
parents | |
children | c52966834f83 |
comparison
equal
deleted
inserted
replaced
27:d95582268b44 | 28:4f862c618b44 |
---|---|
1 // | |
2 // LockedCurrencyPicker.swift | |
3 // Simoleon | |
4 // | |
5 // Created by Dennis Concepción Martín on 22/07/2021. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 struct LockedCurrencyPicker: View { | |
11 var body: some View { | |
12 HStack { | |
13 Text("Default currency") | |
14 Spacer() | |
15 Text("USD/GBP") | |
16 .foregroundColor(Color(.systemGray)) | |
17 | |
18 Image(systemName: "lock") | |
19 .foregroundColor(Color(.systemGray)) | |
20 } | |
21 } | |
22 } | |
23 | |
24 struct LockedCurrencyPicker_Previews: PreviewProvider { | |
25 static var previews: some View { | |
26 LockedCurrencyPicker() | |
27 } | |
28 } |