KentonCooley.xcodeproj
KentonCooley
Main.swift
Home.swift
About.swift
Projects.swift
Contact.swift
Resume.swift
Main.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
import SwiftUI
struct MainView: View {
@State private var selectedTab = 0
var body: some View {
TabView(selection: $selectedTab) {
HomeView()
  .tabItem {
Label("Home", systemImage: "house")
}
  .tag(0)

AboutView()
  .tabItem {
Label("About", systemImage: "person")
}
  .tag(1)

ProjectsView()
  .tabItem {
Label("Projects", systemImage: "folder")
}
  .tag(2)

ContactView()
  .tabItem {
Label("Contact", systemImage: "envelope")
}
  .tag(3)

ResumeView()
  .tabItem {
Label("Resume", systemImage: "doc.text")
}
  .tag(4)
}
}
iOS Simulator - iPhone 15 Pro
9:41
100%

Kenton Cooley

iOS Engineer & Tech Leader

iOS Engineer with extensive experience in mobile application development and team leadership. Currently serving as CEO/CTO at Orion X-1 Technologies