-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCredits.swift
79 lines (76 loc) · 3.26 KB
/
Credits.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//
// Credits.swift
// CustCalc
//
// Created by Matty Cooper on 30/05/2023.
//
import SwiftUI
struct Credits: View {
let SeanURL = URL(string: "https://twitter.com/BoleslawskiSean")!
let MattycbtwURL = URL(string: "https://twitter.com/mattycbtw")!
let GadgetmanURL = URL(string: "https://twitter.com/gadgetman78")!
let dilanURL = URL(string: "https://twitter.com/crustrat13976")!
let bіонарEкURL = URL(string: "https://t.me/aidenpearce5111")!
var body: some View {
List {
Section(header: Text("Main")) {
VStack {
Link("Sean Boleslawski", destination: SeanURL)
Text("Main Developer")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Link("mattycbtw", destination: MattycbtwURL)
Text("Co Developer")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Link("Dilan Önal", destination: dilanURL)
Text("Some Inovating Ideas")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Link("Gedgetman", destination: GadgetmanURL)
Text("Some Inovating Ideas")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
}
Section(header: Text("Translators")) {
VStack {
Link("Sean Boleslawski", destination: SeanURL)
Text("German")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Link("ВіонарEк", destination: bіонарEкURL)
Text("Arabic")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Text("AdelStar")
Text("French")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
VStack {
Text("Korpi")
Text("Finnish")
.font(.system(size: 10))
}
.frame(maxWidth: .infinity, alignment: .center)
}
}
.navigationTitle("Credits")
}
}
struct Credits_Previews: PreviewProvider {
static var previews: some View {
Credits()
}
}