comparison Simoleon/Settings.swift @ 25:933d9ab04374

Fixes Cloudkit sync
author Dennis Concepción Martín <dennisconcepcionmartin@gmail.com>
date Tue, 20 Jul 2021 12:23:32 +0100
parents bda6a55d027a
children d95582268b44
comparison
equal deleted inserted replaced
24:bda6a55d027a 25:933d9ab04374
32 32
33 Text("Rate Simoleon") 33 Text("Rate Simoleon")
34 } 34 }
35 } 35 }
36 36
37 Link(destination: URL(string: "https://dennistech.io")!) { 37 Link(destination: URL(string: "https://twitter.com/dennisconcep")!) {
38 HStack { 38 HStack {
39 Image("TwitterLogo") 39 Image("TwitterLogo")
40 .resizable() 40 .resizable()
41 .frame(width: 30, height: 30) 41 .frame(width: 30, height: 30)
42 42
43 Text("Follow on Twitter") 43 Text("Developer's Twitter")
44 } 44 }
45 } 45 }
46 46
47 Link(destination: URL(string: "https://dennistech.io/contact")!) { 47 Link(destination: URL(string: "https://dennistech.io/contact")!) {
48 HStack { 48 HStack {
56 } 56 }
57 57
58 Section(header: Text("About")) { 58 Section(header: Text("About")) {
59 Link("Website", destination: URL(string: "https://dennistech.io")!) 59 Link("Website", destination: URL(string: "https://dennistech.io")!)
60 Link("Privacy Policy", destination: URL(string: "https://dennistech.io")!) 60 Link("Privacy Policy", destination: URL(string: "https://dennistech.io")!)
61 Link("Developer's Twitter", destination: URL(string: "https://twitter.com/dennisconcep")!)
62 } 61 }
63 } 62 }
64 .onChange(of: selectedCurrencyPair, perform: { selectedCurrencyPair in 63 .onChange(of: selectedCurrencyPair, perform: { selectedCurrencyPair in
65 setDefaultCurrency() 64 setDefaultCurrency()
66 }) 65 })